Skip to content

Instantly share code, notes, and snippets.

@AndrewFeeney
Created March 26, 2019 00:25
Embed
What would you like to do?
A set of bash scripts to set a pre-written commit message and make the commit with the pre-written message
#!/usr/bin/env bash
vim ./COMMIT_MSG.aim.txt
#!/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