Tagged Questions

12
votes
3answers
7k 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
368 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
638 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
155 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
247 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
0answers
12 views

Merge two commits which are in pull request already

so here is the deal: I was working only on my master branch (silly!) and I push commit to my repo and then to upstream (main repo, which I forked) - then that someone wanted to fix this commit so I've ...
1
vote
1answer
312 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
96 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: ...