Aucun résumé des modifications |
|||
Ligne 63 : | Ligne 63 : | ||
<br /> | <br /> | ||
<div class="blubox-jck"> | <div class="blubox-jck"> | ||
=== Renommer une branche === | |||
See <favorites keyword=git_rename_branch output=css3treeviewkw/><br> | |||
<div class="blubox-jck"> | |||
<syntaxhighlight lang="bash"> | |||
#en local | |||
git branch -m <old-name> <new-name> | |||
#en distant | |||
git push origin :<old-name> <new-name> | |||
</syntaxhighlight> | |||
<br> | |||
<br> | |||
== Liens Externes == | == Liens Externes == |
<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>
#en local git branch -m <old-name> <new-name> #en distant git push origin :<old-name> <new-name>