5 lines
50 B
Bash
5 lines
50 B
Bash
#!/bin/bash
|
|
git add .
|
|
git commit -m "$1"
|
|
git push
|
#!/bin/bash
|
|
git add .
|
|
git commit -m "$1"
|
|
git push
|