Talk:FlightGear Git: data developers

From FlightGear wiki
Revision as of 20:13, 24 March 2015 by Hamzaalloush (talk | contribs) (Suggested Upstream section)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Suggested Upstream section

As i found out when i followed these well-written instruction, if i had to sync my repository to final FGData to absolve conflicts in files modified and allow fast forwarding for the devs to merge easily.

I found a way that you can add a new remote to pull from and sync your next to.

git remote add upstream git://git.code.sf.net/p/flightgear/fgdata

check out to next and create your feature branch, i.e:

git checkout next git checkout -b reflect-shader

fetch and merge the "upstream" remote into your feature branch:

git fetch upstream

git merge upstream/master

what do you think? -Hamzaalloush (talk) 16:13, 24 March 2015 (EDT)