Git : Les bases

Oh my git  !
Voici un petit memo sur git.
Comme d'habitude , pas de blabla.
Go!

# Initialisation de git
git init

# On creer et va sur functionality1
git checkout -b functionality1


#Serieux ! je dois commenter ça?
touch tonmonmon


#on ajoute le fichier
git add tonmonmon


#On verifie l'etat de git
git status


#Enfin on commit !
git commit -m "functionality1"


#On fusionne avec la branch master
git merge functionality1 master


#On retourne sur la branche master
git checkout master


#On supprime la branche
git branch -d functionality1"


#On ajoute un remote
 git remote add nomdepot ssh://user@serverdepot:/depot/


#On push tout ça dans le déport distant
git push nomdepot



Commentaires