-
-
Save AndrewFeeney/03d4bc33d033b7a7c956d37fbb7c5599 to your computer and use it in GitHub Desktop.
A set of bash scripts to set a pre-written commit message and make the commit with the pre-written message
This file contains 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
#!/usr/bin/env bash | |
vim ./COMMIT_MSG.aim.txt |
This file contains 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
#!/usr/bin/env bash | |
vim ./COMMIT_MSG.aim.txt | |
git commit -F ./COMMIT_MSG.aim.txt | |
rm ./COMMIT_MSG.aim.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment