Pull requests are made when a developer forks a project, makes changes, and then wants those changes to be included in the main project again. These were made popular by Github and Bitbucket.
0
votes
1answer
22 views
Messed up Git branching, how to fix
I am having some trouble with git (github), because I am new to this, my mind is thinking in SVN, and I guess I am just not getting this... please help.
So I was working on some branch_1 doing some ...
12
votes
3answers
417 views
Git: Error creating pull request: Forbidden (HTTP 403)
I used to create pull-requests on my project as normally, I've been having access for a long time and nothing have changed since then.
Every time I try to create a new pull request I get the ...
1
vote
1answer
28 views
Followup: Etiquette of GitHub Contributing, Pull Requests vs New Issue
as a followup to Etiquette of GitHub Contributing, Pull Requests vs New Issue:
What is the 'etiquette' way of submitting a pull request to an all-ready pulled bit of code?
Consider:
Author A - ...
3
votes
1answer
39 views
Understanding pull requests on GitHub: What happens, when the requesting repository is deleted?
Following scenario:
I forked an open source repository (GitHub -> project -> Fork). Then I cloned my project copy locally, made some changes in the master branch, commited them, and pushed to ...
3
votes
2answers
64 views
How can I get rid of unwanted changes in a git branch / pull request?
Common scenario: A contributor sends a pull request containing 1 or 2 useful changes plus a ton of (unwanted by me) whitespace changes made automatically by his IDE.
Of course I can tell him to ...
0
votes
1answer
37 views
How to make a commit and pull-request on a branch in Github?
Seems fairly easy I thought...
I forked a repo called abc and cloned it locally.
The original repo I forked from has a branch called 2.1-stable
I don't have this branch on my repo or locally
I need ...
1
vote
1answer
47 views
how to make a pull request on Git from a cloned branch stored in external folder?
I'm lost with Git...
I have a forked repository abc both on Git and locally. I need to create a clone of a branch of the original repo in a separate directory (let's say abc_branch_1.1, modify things ...
1
vote
0answers
47 views
What's the best practice for testing a github pull request?
Github pull requests are a great way of receiving code contributions to open source projects, but what's the best way to pull them into your code base?
A developer might say they've got all the tests ...
2
votes
1answer
27 views
Merge part of a pull request
New Git and Github user. Is it possible to accept/merge only part of a Pull Request?
For example if there is a Pull Request on Github that has 4 commits but you only want to use 2 of them, is there ...
1
vote
1answer
47 views
“Could not find any relevant repository hosts for the currently open repository”
I'm trying to create a pull request for the nuget git repository (which I just did a clone from). I've made a local commit.
But when I try to create the pull request I get the following error:
...
2
votes
1answer
121 views
How to cherry pick 2 out of 5 commits of a pull request on GitHub?
I'm new to GitHub. Someone submitted a pull request with 5 commits. 3 of them have a little bug, though, so must wait. How can pick 2 of them for my project?
1
vote
1answer
47 views
How do I push to a pull request on github?
I've added this to my .git/config file:
fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
Which allows me to pull down pull request diffs, but when I check it out it actually creates a branch with ...
0
votes
0answers
17 views
How does gihub merge in a bare repo (for pull requests)?
It is not possible to merge code in a bare repository (at least not when I try it locally).
When you go through with a pull request on github (one without a forked repo but only a request to pull in ...
3
votes
2answers
1k views
Creating pull requests in gitlab
I have gitlab installation running, and I have a repository with library that I want to share with my friends, I can't understand what is the flow of sending pull request in gitlab..
The user can't ...
1
vote
3answers
60 views
How to exclude files from a pull request?
I will like to perform a pull and merge request but also I would like to exclude some files from this pull request.
Example: a.py b.py c.py
I would like to peform a pull request and merge except ...
1
vote
0answers
30 views
How do I download files that are in a pull request, from github?
I am trying to download these files that are in a pull request: https://github.com/scikit-learn/scikit-learn/pull/1653
Is this possible through linux terminal using git clone?
Thanks!
4
votes
1answer
58 views
Git commit show total file replacement instead of line by line changes
Each time a colleague sends me a pull request and I view it at GitHub some of the files in the commit show up like completely new content e.g. 1200 line deletions and 1220 line additions where he as ...
2
votes
1answer
92 views
How to make a pull request for just a single change?
I have almost no clue about git or github and I don't want a clue. But I happen to have a two-line bugfix for an open source project here. In the spirit of cooperation and whatever, I'd like to ...
4
votes
2answers
94 views
Exact git command line equivalents to the “Pull Request” and “Fork Repo” buttons in Github
what is Github doing when I click on these buttons? Let's say I do a pull request in Github. What is the git command I would type in (git pull ....?). And how about forking? What is Github doing ...
1
vote
1answer
73 views
Merge some commits in pull requests in Github
I have created a pull request on Github. I have 2 commits in the pull request. How (if it is possible) can I merge only the first commit, and then create a second pull request for the second commmit.
...
1
vote
1answer
63 views
How to submit a pull request from a cloned repo?
How to submit a pull request from an existing locally-cloned repo?
Often, I want to look at some libraries source code from github, so I clone it. Later, I discover some issue with the code and ...
4
votes
3answers
141 views
Set the develop branch as the default for a pull request
I want to make the pull request merge into develop from the feature branch by default.
I'm advocating the use of git flow, so when a pull request is submitted for a feature, the pull request needs to ...
1
vote
0answers
147 views
Manually closing bitbucket's pull request
I do things like that:
git clone
git checkout -b new_feature
< work and commit >
git rebase master
< work and commit >
< finish working >
git rebase master
git push origin ...
4
votes
2answers
963 views
How to do a Github pull request?
It had always bugged me that I didn't know how to contribute to other people's projects on Github, especially since I'd benefited so much from them. So today, I figured this out (it was much easier ...
0
votes
1answer
89 views
Merging pull requests together
Someone has submitted a set of pull requests to my repository on github. Unfortunately they've done this in several pull requests (one for each file) rather than submitting all the pull request for ...
1
vote
4answers
128 views
How to completely remove a merged pull request?
I merged a pull request on GitHub. However, it was a mistake, and I want to undo the merge, its commits, and most importantly, delete all the files introduced by these several commits from the ...
2
votes
3answers
79 views
Guide to forking and working on a rails gem [closed]
I am looking for some kind of guide that will help me start forking gems, changing them where I need and write the complementary code to that (tests,etc) and explain the pull request procedure in ...
2
votes
1answer
88 views
git merge pull request to private repository
I've cloned some repository from git (dannycoates/v8-profiler) and I have a linkage error while installing it. I saw that someone submitted a pull request which suppose to fix this bug.
Now I want to ...
3
votes
1answer
61 views
How GitHub forms a pull request
I have a branch which has merged master to it couple of times (to get the newest bug fixes to that feature branch). Now I wanted to see all the changes I have made after I started working in that ...
1
vote
2answers
69 views
How to create a 'private fork', stay in sync with origin, and push back?
I've cloned a github project, and have to make some modifications in private (e.g. entering payment information). Github won't allow me to make a forked repo private, saying I should duplicate it ...
0
votes
1answer
126 views
Include only specific commits in a pull request
Let's say I have cloned repository, created new branch "Topic1", made changes, commited them and then pushed them to a remote repo git push origin Topic1. After that I made a pull request into master ...
9
votes
2answers
330 views
Change “base repo” for GitHub pull requests
For a GitHub pull request, you specify a base repo (where you want the changes to go) and a head repo (where they're coming from).
However, I would like to use a base repo that is not on the dropdown ...
1
vote
1answer
65 views
Name of branch in pull request on GitHub
Let me see if I got this right, I'm new to Git.
Assume I've created a fork of a project on GitHub and made some changes. If I were to commit, push and register a pull request of these changes its ...
0
votes
1answer
96 views
Iscroll Javascript Ajax Request at pull end?
i got nearly the same as in this example here: Tutorial for iScroll
The Thing i want is to do a Ajax Request at the End of the Scrolling, like Facebook does for example. Can i do this with this ...
3
votes
0answers
110 views
Gerrit code review, or Github's fork and pull model? [closed]
I am starting a software project that will be team AND community developed. I was previously sold on gerrit, but now github's fork and pull request model seem to almost provide more tools, ways to ...
2
votes
1answer
119 views
I updated the branch of a pull request from upstream/master. Will it pollute the pull request if I push the branch again to github?
I forked a project, created a feature branch, implemented the feature and sent a pull request. While waiting for the answer I updated my local code from upstream and now I'm wondering if I later have ...
5
votes
3answers
1k views
GitHub: Reopening a merged pull request
I made some changes
I submitted a pull request
The pull request was accepted and merged.
We found a bug
The changes were removed again whilst I fixed the bug.
I've now fixed the bug and want to ...
1
vote
2answers
327 views
Pull-Request for only certain files/commits
I have a repository that is forked from GitHub that has a few modifications made to it. However, in a certain commit, a few files were changed that I want to submit a pull-request for, leaving the ...
0
votes
1answer
42 views
Is it possible to accept pull request from a cloned/forked repo?
Is it possible to accept pull request from a cloned repo?
Example ( fork of repo ):
Repo #1: https://github.com/acme/original_project
Repo #2: https://github.com/blah/original_project ( fork )
...
0
votes
2answers
665 views
EGOTableViewPullRefresh - Unable to build due to linking issues
I am trying to use EGOTableViewPullRefresh in my ios6 project but I can't get past a linking issue when building. After including the source to my project, adding -fno-objc-arc flag to the ...
1
vote
2answers
89 views
How to mark a pull request as “reviewed” in GitHub?
We have recently moved from Gitorious to GitHub, and one of the features potentially missing is the ability to mark a pull request as "Reviewed".
The reasons for this are:
Reviewing a merge ...
1
vote
2answers
98 views
Pull requests overriding earlier commits
I am new to Git so bear with me.
I have a Git repository (on GitHub) and I have lots of coders who are inexperienced with Git. When I hire them, I ask them to make a pull request towards my ...
1
vote
1answer
85 views
Pull Requests for orphan branch
I'm working with a friend on a little project hosted at github.
What is special about this project is that we would like to use lots of orphan branches. But it seems we can't do pull request for such ...
1
vote
2answers
313 views
Adding Tags to a Pull Request
I have a repo iontech/Anagen forked from agiliq/Anagen
I made a few commits to my fork and added a tag. Then I opened a Pull Request. This Pull Request includes only my commits.
How do I include the ...
3
votes
1answer
250 views
Automatically closing issue from pull request in github
Can anyone help with how to close an issue using a pull request on github ? I know about this thread, but it's a different question.
I would like to close the issues not from a commit, but from the ...
1
vote
2answers
49 views
Github API - find out who closed a pull request
How do I find out who closed a pull request using the Github API?
e.g. this pull request was opened by myakura, closed by markdotto. But https://api.github.com/repos/twitter/bootstrap/pulls/4461 ...
0
votes
1answer
423 views
Github workflow and pull requests showing unwanted commits
In our business we have the following setup (hugely simplified version), pretty standard:
A master branch, which updates the live environment through a hook.
A test branch, used for QA, UA, which ...
0
votes
1answer
154 views
Selecting commits to send in a pull-request
I forked a project on GitHub. Being a pure Java source, I had to adapt it to turn it into an eclipse project before working on it. I made 3 commits to reflect these changes.
I then finished adapting ...
6
votes
2answers
1k views
Squash to only one “proper” commit for github pull request
I have a repo on github which someone else (Bob, for the sake of argument) has issued a pull request for. His code's not perfect, so we go through a few rounds of markups. As I understand it, he ...
2
votes
1answer
114 views
Who gets credit for a hand-edited patch file?
A follow-up question to my answer about editing GitHub pull-requests asked whether editing the patch file directly before applying it would result in taking credit for the original author's work. ...
