+ [9 years ago] acetakwas Zarthus:: Okay. Thanks a great deal.
+ [9 years ago] rando what is the gif size limit on github?
+ [9 years ago] rando what is the gif size limit on github?
+ [9 years ago] benneh hi, so i am new to git, i created a fork of a repo and checked in a couple of checkins there, now i want to pick one checkin to create a pull request for the base fork, how do i do this? http://nightow.de/004272.png
+ [9 years ago] jhass benneh: add a remote for the upstream repo in your local repository, git fetch upstream; git checkout -b my_feature_or_fix upstream/master; git cherry-pick <commit-sha>; git push origin my_feature_or_fix; then go the new branch on github and open a pull request

message no. 136101

Posted by WebWalker3D in #github at 2016-05-21T20:40:55Z

jhass: Sweet, thanks
+ [9 years ago] benneh hm, i do not fully get it, so i create a new fork for which i use to create pull requests? then merge the specific checkin from my other fork there and then create a pull request for the whole new fork?
+ [9 years ago] jhass benneh: no
+ [9 years ago] jhass you create a new branch for each pull request with only the changes you want in it
+ [9 years ago] Infininight the important thing to know is that a pull request references the fork, not a specific commit or a specific point in it's history