forked from DCLL-MDL/ExemplesMoodleXML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commandeGit.txt
47 lines (33 loc) · 1.04 KB
/
commandeGit.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
git commit -a - m "modig "
le -a permet de commiter que les fichiers modifiés.
gitk : permet d'afficher toutes les traces du projet ;)
git commit -v .
-v permet d'afficher beaucoup plus de details sur le projet. yes git est magique
git config --global -l
pour verifier les configurations
git branch -a
afficher toutes les branches distantes
git branch dev/truc creer une branch
git checkout dev/truc bascule sur une branch
ces 2 dernières lignes sont identitques à git checkout -b dev truc
commment envoyer la branche locale dev sur la branche distante
origine/dev ?
prémière fois : git push origin dev
/ git push -u origin dev
autres fois : git push origin dev
/git push
recapitulatif
git checkout -v maBranch
git add -u fichiers à ajouter
git commit -m "commentaires"
git checkout master // pour revenir sur la branche master
git pull
git push origin maBranch
git merge maBranch
git push
////////////////
git branch nom_branch
git checkout nom branch
git clone url
git remote origin url
// et après tout ce que s'en suit ;)