- Check what branch you are on (
git branch
) - Sync Remote via (
git pull
) - Identify Feature for branch
- Create a branch for feature (
git checkout -b <useful_branch_name>
)- Branch name should be a reasonable unit of work that is worth 16hrs or so of work
- Do Work and Make a commit (
git commit -m "<some message>"
) - Sync with remote again via (
git push
) or (git gui
) - Open a PR for you new branch with a useful message in Github
- use that PR for reference until the work is complete
Last active
August 29, 2015 14:27
-
-
Save ninjapanzer/ff83d2d3c0b72ad70c7d to your computer and use it in GitHub Desktop.
Basic workflow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shouldn't there be a 'git add' before step 4 'git commit'? The message I got was "nothing to commit'. I did an add and then git was happy to commit. Or is this just when creating a new branch to work on.