I created a local branch that contains my 'current-release' branch, how can I push this to the repository?
Asked
Active
Viewed 87 times
1 Answers
1
git push origin remote-repository-name
assuming that you are on the current-release branch and the remote repository stuff is properly configured on your system already.

Community
- 1
- 1

karlphillip
- 92,053
- 36
- 243
- 426
-
I do *git push origin develop* to send my local commits to a remote repository to a branch named *develop*. – karlphillip Dec 04 '10 at 12:33