Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 988 Bytes

installer_un_projet.md

File metadata and controls

52 lines (40 loc) · 988 Bytes
title category
Installation projet
Git

Initialiser un projet

cd chemin/vers/mon_dossier
echo "# MON_PROJET" >> README.md
git init
git add README.md
git commit -m "Initial commit"
git remote add origin ....git
git push -u origin master

Récuperer le repo sur Github

git clone ....git chemin/vers/mon_dossier

Mon repo est composé d'au moins deux branch.

develop : dédié au développement et résolution de bug. master : reflète le code en production. Personne ne doit travailler directement sur cette branch.

Pour récupérer votre branch develop

git branch -a
git checkout origin/develop
git checkout -b develop origin/develop
git branch

Developpement : Branch develop

Prod : Branch Master

# On se met sur la branche master
git checkout master
# On merge la branche develop
git merge develop
# Pour pousser les changements
git push origin master
# Penser à revenir sur develop
git checkout develop