I\'m writing a bash script to add, commit, push all files in a directory.
#!/bin/bash git add . read -p \"Commit description: \" desc git commit -m $de
#!/bin/bash git pull git add . git commit -m "$*" git push
call script with comment as cmd args, less keys to push:
$ ./togithub test commit script