Merge pull request #397 from vrkansagara/master

[ Proposal ] Sync of fork with latest code base
This commit is contained in:
Jean-Marie Renouard 2018-08-06 12:42:46 +02:00 committed by GitHub
commit 586b5ba761
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
sync.sh Normal file
View file

@ -0,0 +1,17 @@
#!/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