Last active
December 17, 2015 01:00
-
-
Save henriquehorbovyi/b0dc6e815456115ce70a to your computer and use it in GitHub Desktop.
This is shell file to add,commit and push repos when I'm lazy... :P
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
| #!/bin/bash | |
| # If you are lazy when have to add, commit and push the final work on GitHub, you'll love it! :P | |
| git add --all | |
| git commit $* | |
| git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment