Short Pull Command in Git
In the previous tutorial we used the pull
command as follows:
git pull origin master
This command has a short form that, when used, will merge the changes into the corresponding branch:
git pull
Use the short version of the command.