forked from nordquip/sousms
-
Notifications
You must be signed in to change notification settings - Fork 0
Git Merge Process WIP
Ryan5732 edited this page Oct 8, 2012
·
1 revision
## WIP DRAFT, IGNORE FOR NOW
This will be a guide, showing team leaders how they may publish their changes to the master repository, as well as how they can update their team fork with the latest files in the master repository.
Must be careful, will be a pain to recover from errors. Only team leaders are to perform the following procedures.
bash, change dir, cd, ls
git clone (First time)
git status, git add, git commit
add new files (git add .), commit (git commit -m 'message')
Git remote -v 'origin 'upstream create remote (git remote add upstream git@github.com:nordquip/sousms.git)
Need to sync main repo changes back down to team lvl
git fetch/pull from team
Do not change files here; if you want to change, commit and push to team. this is sync to parent only
update with parent (git pull upstream master)
Final test before pushing to parent.
push to parent (git push upstream master)