project 1 for csc336 Fall 2018
create a branch from this repo and make changes in that until ready to merge with master.
git checkout <user branch>
- Push the changes to own branch
git statusto check statusgit add <file>to add all modified filesgit commit -m <message>to commit added filesgit pushto push added/commited files
- Merge and push from master branch to master remote
git checkout mastergit merge <user branch>git push
- Go back to own branch
git checkout <user branch>
- Make sure local branch is updated
git add <files>git commit -a -m <message>git push
- Pull from Master branch
git checkout mastergit pull
- Merge with Master from own branch and push
git checkout <user branch>git merge mastergit push