Last active
February 25, 2024 18:12
-
-
Save szalapski/3e390d32729b591cd3cf4874b42b35b7 to your computer and use it in GitHub Desktop.
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
@rem gcp.bat: Git Add, Commit, Push | |
@rem USAGE: gcp [just type your commit message without any quotation marks anywhere] | |
@rem EXAMPLE: gcp code cleanup for abc feature for issue 1234 | |
git add -A && git commit -m "%*" | |
@if errorlevel 1 goto end | |
git push | |
:end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment