How to work with repo - Lowcrum/tagmf GitHub Wiki
git checkout -b andrew # create and checkout in one command
git checkout andrew # move to existing branch
git fetch origin # get changes from github
git merge origin/master # merge those changes into the current branch (andrew)
git status # check the branch your on and the files to be included
git add <file> # verify the files you wish to add
git commit -m '<message>' # add the file changes to the branch
git push origin <branch> # upload the branch to the project
- Go to the pull request page and push the green new pull request button
- Set base to master and compare to the branch you want to merge
- Click big green create pull request button and leave a comment if you want
- Click the second big green create pull request button.
- Pretty straight forward, go to the pull request tab
- Click the pull request to merge.
- Click merge pull request
- Leave a commit if you wish and click confrim merge
- DELETE THE OLD BRANCH