git - How to merge latest changes from a base repo to a forked repo -
2 years ago had forked git repository. after made changes on our side not have changed little things in many files.
now there fixes+features in base git repo had forked. since want include changes our forked one, keeping our local changes constant.
is there way merge latest repo changes our forked repo keeping our local changes is?
if changes isolated onto own branch, can pull changes in upstream repository.
git pull
mind you, equivalent git fetch && git merge
operation.
if want include these new changes specific branch, you'll have merge them in via git merge
. bear in mind, changes code base on 2 years old, you'll run merge conflicts. @ point, you'll want figure out what's changed old api new api , determine best way move forward.
Comments
Post a Comment