git pull-- from master
- create a new branch,
git checkout -b new_branch_name - commit to that branch
- push branch to github
git push -u origin new_branch_name - as you are working on your branch, rebase it with master:
- pull master first by going to the master branch
git checkout master
- pull master first by going to the master branch
git pull--- from master