8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
echo "Starting Send..."
|
|
echo "Commit name:"
|
|
read name
|
|
git add *
|
|
git commit -m "$name"
|
|
git push
|
|
echo "Sent!" |