MySQLTuner-perl/build/sync.sh
Jean-Marie Renouard 467e999a17 clean end line
2021-09-27 11:55:22 +02:00

17 lines
439 B
Bash

#!/bin/sh
# Used to sync the original project with local project.
#Save existing working
git stash
#add project url to current repository as upstream-live
git remote add upstream-live https://github.com/major/MySQLTuner-perl
#Fetch updated code
git fetch upstream-live
#Going back to the master branch for mearging latest code
git checkout master
#Merge latest code with master branch.
git merge upstream-live/master