Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Github: How to pull changes to your own repository
02-16-2013, 06:24 PM
Post: #2
RE: Github: How to pull changes to your own repository
I do it locally. Just for other people who might find this topic, here's what I do:

Code:
# Initial clone.
git clone https://[email protected]/unknownbrackets/ppsspp.git
cd ppsspp

# Add the main upstream remote, I also have Orphis, Xele02, etc.
git remote add upstream https://github.com/hrydgard/ppsspp.git

# I like to be specific when I pull, rather than using git pull.
git fetch upstream
git rebase upstream/master

# Sometimes I try out other people's stuff.
git fetch Orphis
git checkout -b dlist-rewrite Orphis/dlist-rewrite

Anyway, the way to avoid going through local is a pull request. Something like this:

https://github.com/Apology11/ppsspp/pull...ard:master

You'll have to create the pull request and then submit it. But ultimately, you'll still have to pull down the changes at least to your local, of course.

-[Unknown]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Github: How to pull changes to your own repository - [Unknown] - 02-16-2013 06:24 PM

Forum Jump: