Github Workflow - Sotera/watchman GitHub Wiki
Github Workflow
# create new github issue and add meaningful notes then...
git checkout -b 999-dev-branch
# work, work, work, commit, commit, commit
git commit -m "anything goes b/c i'm on a dev branch that will be deleted"
git push -u origin 999-dev-branch # just once
git push # repeat as needed
# visit github in browser and create a PR for your new branch
# add 'fix #999' to the comment in the PR and the issue will close when the PR is merged
git br -d 999-dev-branch # and delete branch on github when PR is merged
if you want a visual, https://guides.github.com/introduction/flow/
Git Cheatsheet
git checkout -b 999-dev-branch
# if you need to changes branches or git pull while u have local changes
git stash
git stash pop # get back last stash
# push to remote and start tracking branch
git push -u origin 999-dev-branch
git push # once u have a tracking branch
# amend the message of ur last commit
git commit --amend
# uncommit the last commit, but keep the changes, so u can re-do stuff
git reset HEAD^