How can I safely update (pull) a git project, keeping specific files untouched, even if there\'s upstream changes?
myrepo/config/config.php
Is there a way, o
Incase their is local uncommitted changes and avoid merge conflict while pulling.
git stash save git pull git stash pop
refer - https://happygitwithr.com/pull-tricky.html