Aucun résumé des modifications |
|||
Ligne 12 : | Ligne 12 : | ||
git config merge.tool kdiff3 | git config merge.tool kdiff3 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<br> | |||
==Soumettre des modifications == | ==Soumettre des modifications == | ||
Ligne 18 : | Ligne 19 : | ||
git add . | git add . | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<br> | |||
===Suppression des modifications faites en local=== | ===Suppression des modifications faites en local=== | ||
Ligne 23 : | Ligne 25 : | ||
git reset --hard HEAD | git reset --hard HEAD | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<br> | |||
===Suppression des fichiers non suivis par git en local=== | ===Suppression des fichiers non suivis par git en local=== | ||
Ligne 28 : | Ligne 31 : | ||
git clean -f -d | git clean -f -d | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<br> | |||
Ligne 41 : | Ligne 45 : | ||
git commit --amend "nouveau commentaire" | git commit --amend "nouveau commentaire" | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<br> | |||
=== Poser un label === | === Poser un label === | ||
Ligne 46 : | Ligne 51 : | ||
git tag <nameoftag> <name of commit> | git tag <nameoftag> <name of commit> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<br> | |||
=== Mettre à jour le label distant === | === Mettre à jour le label distant === |
<keywords content="git,gestion de configuration" />
git config core.editor "xemacs"
git config merge.tool kdiff3
git add .
git reset --hard HEAD
git clean -f -d
# l'option -a fait aussi l'ajout des modifications dans l'index # équivalent de git add . suivi de git commit git commit -a
git commit --amend "nouveau commentaire"
git tag <nameoftag> <name of commit>
git push <REMOTE> <name of tag>
git push <REMOTE> <name of branch>