Tagged Questions
11
votes
3answers
6k views
Push and Pull Branches In Git
I have a local repository I'm working on and it's remote is hosted on GitHub. I recently created a branch and started working on it making several commits and now wish to push the branch to GitHub ...
3
votes
3answers
134 views
Why do I have problems pushing new branches to my Git repository?
As a followup to my question about unavailable branches after svn to git migration, I have a different problem: I'm unable to push new branches to my central Git repository.
$ git clone ...
2
votes
2answers
136 views
pull-only repo's 'git status' saying the branch is ahead of origin/master. Why?
So here's the situation:
$ git status
# On branch master
# Your branch is ahead of 'origin/master' by [x] commits.
#
There are several questions about this on SO already, but none seem to ...
1
vote
1answer
113 views
Change master to Rails 3 branch in GIT?
I currently have the following structure in my GIT repository:
// LOCAL
/master
/rails3 (HEAD)
// REMOTE
/HEAD
/master
/rails3
I am not sure why the remote (GitHub in this case) has ...
0
votes
1answer
106 views
Rebase-push cycles for git branches
I'm currently using a github repository with a single branch, based of a master branch of another repository. The github branch is a backup of my work, and definitely not meant for pulling, and as ...