How would I add a sequence of git commands for a particular repository.
For example I have one repository that needs these commands in this sequence:
git fetch upstream
git checkout master
git merge upstream/master
git push
It could be called X-Checkout, for example.
Thanks in advance for any ideas.