Git Commands
Working locally
stash ou remisage
Création d’un remisage1
git stash
Voir la liste des items remisés1
git stash list
Appliquer un remisage1
2git stash apply
git stash apply stash@{2}
A voir
git stash apply –index
Supprimer un remisage1
git stash drop stash@{0}
$ git stash show -p stash@{0} | git apply -R
Remove untracked files and directory
1 | git clean -f -d |
Revert from uncommited files
1 | git reset --hard HEAD |
Supprime tout l’historique et les modifications effectuées après le commit spécifié (ici HEAD)
Working with remote
Remove remote branch
1 | git push origin --delete branchName |