I am lost in different articles and stackoverflow questions and I am unable to put my head around to figure out the command for GIT. Here is what i want to do
- I created the branch from master using eclipse Git.
- I switched to that branch
- Made my changes
Now, I want to
- Commit changes locally (`git commit -m "comment"')
- Push to repository as branch of the
Master
so that i can create thepull request
. Once pull approved it will bemerged
into the master. But how would i push my local to upstream so that the branch is created and i can issue pull request ?
git push origin mybranchname
? Sorry, but it's not clear what's exactly the problem here. – Washout