2
votes
1answer
44 views

How to modify Github pull request?

I've opened a pull request to a project. The maintainer has decided to accept it, but told me to modify some contents. How can I do it? Whether I should keep the commit hash unchanged, how can I do ...
1
vote
0answers
29 views

How to submit multiple pull-requests in GitHub when they may conflict slightly

I am submitting two independent new features to a project as pull-requests. Each feature is in a topic branch, each branching from the tip of master. /-- feature1 master --- \-- ...
0
votes
3answers
57 views

git, made a pull-request but found a bug in my code, how to fix it?

I made my first pull-request not long ago, and I found a bug in the code.(meh) I don't want to make a new branch and commit/push/pull request the new branch since this must have been in the first ...
0
votes
1answer
55 views

connect my local git repository with github forked repository?

I created my private & local repository using git clone --bare $upstream (detailed here How to create a git repository on my server from the github server?) At that time, I didn't think I will ...
0
votes
1answer
23 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 ...
1
vote
1answer
31 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
40 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
70 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
39 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
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 ...
2
votes
1answer
136 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
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
59 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
99 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
97 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
75 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
65 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
147 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 ...
5
votes
2answers
1k 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
91 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
135 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 ...
3
votes
1answer
62 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
71 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
136 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
341 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
66 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 ...
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
120 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
342 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 ) ...
1
vote
2answers
93 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
87 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
320 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
259 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 ...
0
votes
1answer
436 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
155 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. ...
4
votes
2answers
552 views

How can you add commits to a github pull request of another person to your repo if you can't commit to their branch?

Here's the scenario: I have a public repo A. Bob forks A, adds a few commits to Bob/master and submits a pull request to merge those changes in A/master. I'd like to make a few changes to the ...
6
votes
1answer
1k views

Github: Push additional commit to pull request

I made a pull request, but now I need to push an additional commit to this pull request. Github says that: You can add more commits to this pull request by pushing to the x4e925e4 branch on ...
1
vote
1answer
76 views

What is the etiquette for keeping/discarding a contributor's namespace in pull requests?

I have a Github project repository. A contributor forked the repository, added a new file and sent me a pull request. I noticed that he used his own namespace in that (.java) file, whereas the ...
1
vote
1answer
335 views

how to view line comments in github

I spent all morning in github reviewing a pull request, writing detailed comments on many lines in the Diff view on the pull-request page. I individually saved every line-by-line comment, and they ...
18
votes
3answers
4k views

github: Adding commits to existing pull request

I opened a pull request to rails repo on github by using Fork & Edit this file file button. Now, After getting feedback on my PR, I wanted to add some more commits. so here is what I ended by ...

1 2