Last active
July 11, 2020 17:49
-
-
Save DevEarley/49157366a67ca24478f85f5bf5e4dd5c to your computer and use it in GitHub Desktop.
C n' P ... Commit & Push ... Command for Git. Just type 'cnp' and then your commit message.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo off | |
git add . | |
git commit -m "%*" | |
git push |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cnp This is a commit message. It should describe any changes I made to myself and others. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment