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 ...
8
votes
1answer
316 views
How to pull remote branch from somebody else's repo
I've got a project hosted on GitHub which somebody has forked. On their fork, they've created a new branch "foo" and made some changes. How do I pull their "foo" into a new branch also named "foo" in ...
5
votes
2answers
548 views
How to cancel a pull request on github?
I have a fork for a repo on github. I was trying to submit a pull request of just my latest commit, which changes 1 file. Somehow, 30 commits were submitted instead.
How do I cancel the pull ...
4
votes
1answer
116 views
git pull origin master does not update origin/master?
According to the documentation, git pull performs a git fetch then a git merge, however in that case performing git pull origin master should perform a git fetch origin master right? However, it ...
2
votes
1answer
230 views
Can't commit changes to github
Whenever I try and to commit changes to my github repo I get this error.
To git@github.com:antarr/3skeleton.git
! [rejected] master -> master
(non-fast-forward)
error: failed to
...
1
vote
1answer
293 views
What can I do when git push fails with …“local out of date”?
I'm sure this is a pretty easy fix, but I'm not sure why my pushes to GitHub are failing.
Right now it looks like:
$ git push origin master
To git@github.com:user_name/project_name.git
! [rejected] ...
0
votes
1answer
16 views
GitHub maintain repo within repo directory
Im super new with using GitHub.. I cloned in a repo at html/mycms (repo is mycms) and now I have another repo I would like to maintain within.. I cloned it in at html/mycms/system/docs (repo is called ...
0
votes
2answers
88 views
git: how can i fetch an unmerged pull request for a branch i don't own?
I need to pull in a specific pull request (that hasn't been processed into the main stream yet) in the NServiceBus repo:
...