carloteran19
11/28/2017 - 11:17 PM

git_stash

Git pull keeping local changes (db files)

// There is a simple solution based on Git stash. Stash everything that you've changed, 
// pull all the new stuff, apply your stash. 

git stash
git pull
git stash pop