+[9 years ago]acetakwasZarthus:: Okay. Thanks a great deal. +[9 years ago]randowhat is the gif size limit on github? +[9 years ago]randowhat is the gif size limit on github? +[9 years ago]bennehhi, 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]jhassbenneh: 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
+[9 years ago]bennehhm, 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]jhassbenneh: no +[9 years ago]jhassyou create a new branch for each pull request with only the changes you want in it +[9 years ago]bennehoh my god +[9 years ago]Infininightthe important thing to know is that a pull request references the fork, not a specific commit or a specific point in it's history