Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ################################
- #### SIMPLE GIT AUTOMATION
- ################################
- #execute command -> make gh msg="UpdateFiles"
- GIT := git
- ACTION = add.o commit.o push.o
- gh: ${ACTION}
- %.o:
- ${GIT} add .
- ifdef msg
- ${GIT} commit -m ${msg}
- endif
- ${GIT} push origin master
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement