Short command to send data to Git
In the previous lesson we wrote the following command to send data to an remote repository:
git push -u origin master
This command has a short form that will push the current active branch:
git push
Try the short submission form.
Switch to another branch. Perform a short push to an remote repository. Check GitHub to make sure the selected branch has been pushed.