Wednesday, June 27, 2018

Using Git Bash commands, suck the code from another code base into the code you are working on.

There may be a lot of merge conflicts to resolve in the event of similarly named folders and files. Then again, if the folder setup is wildly different everything new could perhaps just sit side by side with what you had.

git remote add MyTools git@github.example.com:my-Project/MyTools.git
git rebase MyTools/master

No comments:

Post a Comment