From 75b594d77f48a77585890160405b56088a1f19e9 Mon Sep 17 00:00:00 2001 From: FEIPEL Aurelien <aurelien.feipel4@etu.univ-lorraine.fr> Date: Mon, 3 Mar 2025 14:33:31 +0100 Subject: [PATCH] Rendus Finale --- qualdev/compte_rendu.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/qualdev/compte_rendu.txt b/qualdev/compte_rendu.txt index 061bc4b..3273aa8 100644 --- a/qualdev/compte_rendu.txt +++ b/qualdev/compte_rendu.txt @@ -1,3 +1,4 @@ +TP1 4) git init : initialise le dépot 5) git status : permet de connaître les fichiers / répertoires présents dans le dossier de travail non suivis par Git 6)echo ".vscode" >> .gitignore : Fait que le fichier soit ignoré par git @@ -6,5 +7,38 @@ 9) git commit -m "Test git" 10)git log --oneline puis git status +Mise en place d'un dépôt distant +4) +git remote add origin https://gitlab.univ-lorraine.fr/e46605u/typescript_feipel_aurélien.git +5) git remote -v +6) git add . +git commit -m "Premier commit" +git push -u +7)git status +git fetch +git log +Pour quelques commits de plus +2) git add * +git commit -m "Test 2" +3) touch helloworld.ts +touch io.ts +git add * +git commit -m "Helloworld +git push +4) rm helloworld.ts +git rm io.ts +git add * +git commit -m "Suppresion des fichiers" +git push +5) git mv io.ts entrees-sorties.ts +git add * +git comit -m "Rename io.ts" +git push +6) git commit -m "Renommage de io.ts en entrees-sorties.ts" +7) git fetch +git status +8) git push + +TP2 -- GitLab