5 lines
70 B
Plaintext
5 lines
70 B
Plaintext
|
#!/bin/bash
|
||
|
git add .;
|
||
|
git commit -a -m "$1";
|
||
|
git push -u origin "$2"
|