Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
3answers
2k views

How do you attach a new pull request to an existing issue on github?

I'm not sure, but I have a vague memory of creating a github pull request with "Issue 4" or something in the title, and it automatically attached itself to Issue 4 in the project that I was submitting ...
7
votes
3answers
519 views

How to handle your first Pull Request on GitHub?

I'm relatively new to Git. My knowledge thus far includes git add push commit. That's about it, and until now it served me well enough. :) However this morning someone sent me a pull request, which ...
5
votes
1answer
128 views

Can I make a pull request on a gist on GitHub?

Can I make a pull request on some else's gist on GitHub? I'm aware of the fork, clone and commit workflow for a gist I own. I'd like to know if I can request to update someone else's gist with my ...
5
votes
3answers
595 views

Pull requests from other forks into my fork

A project on Github that I have a fork of has a few pull requests that I want to pull into my fork that the auther has not pulled in yet. Is there a simple way to apply pull request from other forks ...
5
votes
2answers
391 views

How to do a pull request in GitHub with only the latest commit in the master branch of my forked repository

I forked a repository on github. I made some changes and did a pull request. Now I made some other changes and want to do a new pull request, but on the preview screen before doing the pull request ...
5
votes
2answers
843 views

How do I merge a pull request in git?

I cloned this repo on my computer: https://github.com/derobins/wmd.git There are several bugs with it though, and it looks like another user has fixed them and issued "Pull requests" (I assume these ...
5
votes
1answer
363 views

What do I do when a pull request is cherry picked?

I forked a project on GitHub, pushed some changes, and opened a pull request. The maintainer signed-off and applied the changes in a new commit (rather than merging my commit), and so the commit graph ...
4
votes
2answers
242 views

Is it possible to create merge requests in pure Git from the command line?

I'm using a behind-firewall install of Gitorious. I can go into the web application and create a pull request from a clone and target the master repo from which it was cloned. I'd like to be able to ...
3
votes
1answer
127 views

Github: Pushing to pull requests

I'm about to pull my hair out. I've submitted a pull request from my fork of a project, back to the owner/maintainer's repo. In this pull request, some things came up that I had to add/change based ...
2
votes
1answer
35 views

Merge pull request to a different branch than default, in Github

A pull request comes into my repo hosted on Github. By default it is merged into the master branch. Is there any way for me to change which branch the changes would be merged into?
2
votes
1answer
105 views

Git Remove unwanted commits from a Pull Request

I know that there are lots of similar questions on Stackoverflow but I am new to git and I am a bit stuck on this one. I have started working on a Project and I made some unwanted commits which I ...
2
votes
2answers
136 views

Plugin “Pull requests” for mercurial

Plugin with "pull-request" functionality for HG. Is there such plugin?
2
votes
1answer
599 views

Github pull request without old commits

I have forked project at github. I make one commit and pull request it. This commit was approved. Then i make second commit and pull request it too. But in pull request there were 2 commits: my second ...
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
44 views

how to choose unwanted commit not being accepted by another collaborator?

Let's say that I have 4 commit on my GitHub, and I already sent a pull request to another collaborator. But on those 4 commit, there is 1 commit, I don't wish my collaborator accept that file. How can ...
1
vote
2answers
54 views

Fork github repository and its pull requests

I'm looking for a way to recover pull requests from a forked repository. Is it possible?
1
vote
0answers
48 views

Bitbucket: Send a pull request via command line?

I have to send a lot of pull requests, so I would rather use the bash command line than bitbucket's web interface. Usage example: $ git-req username Here is such a script for Github: ...
1
vote
2answers
64 views

merging two git remote repositories locally

I want to make use of this feature -- https://github.com/xetorthio/jedis/pull/160. Although this issue has been closed, it has not been merged with the master. Is it possible to clone the master on my ...
0
votes
1answer
19 views

Managing multiple pull requests at the same time

If you have multiple pull requests all based off of the same commit of your master branch (so each pull request was rebased properly before issuing the request), how can you accept and rebase the ...
0
votes
1answer
31 views

Git fork no longer automatically merges

I have a repo (hosted on Github). There is a fork of my repo. That fork is sometimes updated. Upon a pull request from their repo to mine, GitHub no longer offers an automatic merge - it seems to me ...
0
votes
1answer
41 views

How do I properly pull changes from a developer on GitHUB?

I am fairly new to Git/GitHUB and I hired a programmer to make changes for me. When I look under network/Fork Queue a number of his changes say "Will likely not apply cleanly". What does this mean? ...
0
votes
1answer
101 views

How to open multiple pull requests on GitHub

When I open a pull request on GitHub, all commits since my last request and all new ones are automatically added to this request. I can't seem to control which commits are added and which are not. ...
0
votes
3answers
126 views

git pull request for just one file

I've made multiple changes to two files in a git repository (specifically, added two formulae to brew). I committed the changes individually: git commit file1 git commit file2 I then did one push ...
0
votes
0answers
21 views

github gem code with pull request included

I am looking into one of these ruby gems at github. One of the features I really needed is supplied as a pull request, but unfortunately never merged to the main branch for some reason. What would ...
0
votes
2answers
92 views

What do you do with your branch after a pull request on GitHub?

My team is experimenting with using GitHub pull requests for code reviews. My only question is what do you do with the branch after you're done? I would think you'd want to delete the branch, but ...
0
votes
2answers
97 views

How to apply a git patch when given a pull number

I downloaded a trunk version of a codebase from git, and there are build errors. Aparently a patch is now available, and I received an email : see https://github.com/JustinTulloss/zeromq.node/pull/47 ...
0
votes
3answers
373 views

pull to refresh scrollview in iphone [closed]

Possible Duplicate: Implementing pull to refresh view feature Are there any sample outs out there that show you how to implement the pull Related threads on iPhone Dev SDK Forum" Chpwn's ...
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: ...
0
votes
2answers
505 views

EGO Table View Pull Refresh too sensitive

I implemented the ego table view pull to refresh mechanism into my iphone app. When i first implemented it, the pull to refresh worked perfectly. However as of recently, it seems like the pull ...
0
votes
1answer
47 views

How to pull in commits from a second github repo? (In order to separate commit history)

I need to hire some freelancers but not allow them to see previous commits, just the current state. So Id like to clone a private repo on github of mine, remove the .git commit history, add the clone ...
0
votes
3answers
464 views

GITHub: My pull request has 2 commits?

I've forked a project on GIT, and started contributing. From what I've understood, that project has a pending pull request at the time I cloned the project, and later that commit of a 3rd person was ...