13 lines
141 B
Bash
Executable File
13 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
git status .
|
|
|
|
read -p "Press enter to continue"
|
|
|
|
git add .
|
|
git commit -m "update vinniesniper-54816"
|
|
git push
|
|
|