title | category |
---|---|
Principales commandes |
Git |
git status
git branch -a
*
sur la branche courante.
# Deux lignes: créer et basculer sur la nouvelle branch
git branch nom_de_ma_branch_nouvelle
git checkout nom_de_ma_branch_nouvelle
# Une seule ligne: créer et basculer
git checkout -b nom_de_ma_branch_nouvelle
# Si la branch est local et n'est pas créée sur le repo distant
git branch -d nom_de_ma_branch_local
# Si la branch est présente sur le repo distant
git push origin --delete nom_de_ma_branch_distante
git checkout nom_de_ma_branch
# GIT --version 2.23
git switch nom_de_ma_branch
git add .
git commit -m "initial commit"
git add chemin_vers_mon_fichier
git commit -m "message du commit"
git reset --hard md5_commit
git push --force
git add .
GIT_AUTHOR_DATE="2015-12-12 08:32 +100" git commit -m "Commit antidaté"
git pull
git pull origin MA_BRANCH
git push
git push origin MA_BRANCH
git rm nom_du_fichier
git rmg --cached nom_du_fichier