The remote repo has master and staging branches, and I am only supposed to work in staging. The first thing I did was clone the repo down to my local computer. Then I used git checkout -b form origin/staging
to create and checkout a new local branch and have that track the origin/staging
remote.
Now I have several commits and am ready to push that to the staging. How do I do that? Can I simply type git push? If I did that, will it just push my commits into the staging branch on the remote or will it create a new branch called forms into the repo which is not what I want.