Please have some patience as I am still trying to find my way around with git. The whole practice of forking and branching all over the place makes it a bit harder to grok what's going on.
I am trying to get a workflow going but, I'm running into hurdles. So far, this is what I have:
1. Fork project
2. Clone the fork locally
$ git clone git@github.com:MyName/foo.git
3. Add the upstream remote so your fork can be kept up to date
$ git remote add upstream git@github.com:OriginalName/foo.git
4 Working on a branch in the clone:
$ git checkout -t origin/branchName
5 Update from the orginal (upstream) project's branch:
$ git fetch upstream
$ git merge upstream/branchName
6 Commit and push changes in my fork
$ git commit -a -m "some message"
$ git push
How do I get the changes in my fork to the original project? I'm told pull requests but, I can't find the command to run to make that happen. Google hasn't been to helpful.
Should I checkout the branch from upstream, merge my fork, and push?
Should I clone the original project in a different directory, add the fork as an upstream, merge, and push?