General Git Help

  10:20 pm  GIT
git checkout master
git pull
git branch "nouvelle_branche_dev_temp"
git checkout "nouvelle_branche_dev_temp"

// do modifs

git add -A    (ajouter du tracking pour les nouveaux fichiers)
git status    (pour voir si tout est la / rien que l’on veut pas)
git commit -m "insérer un message utilie ici!"
git push    

// get modifs
git pull
Reply
Share a link to this topic
close

Be the first one to reply