Working locally

stash ou remisage

Création d’un remisage

1
git stash

Voir la liste des items remisés

1
git stash list

Appliquer un remisage

1
2
git stash apply 
git stash apply stash@{2}

A voir
git stash apply –index

Supprimer un remisage

1
git stash drop stash@{0}

$ git stash show -p stash@{0} | git apply -R

More info

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