github - Git - to fork or not to fork -
new git , still little perplexed. have forked project on github , bring in/merge recent changes made project owner on original fork. possible? project read basically, i'd myself point can make edits , add code , bring in changes in original/master.
maybe don't need make fork, , should clone master local hard drive. appreciated,
yes, can add original repository remote local repository
$ git remote add upstream http://..... and can
$ git fetch upstream $ git merge upstream/any-changes to data local branches (which can push github fork)
Comments
Post a Comment