remove unused scripts
This commit is contained in:
parent
e08a94cbae
commit
0d0afbfd7c
|
@ -1,10 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
git_directory=$PWD/.git
|
||||
if [[ -d $git_directory ]];then
|
||||
git add .
|
||||
read -p "Enter commit name: " commit_name
|
||||
git commit -m "$commit_name"
|
||||
else
|
||||
echo "Git wasn't initialized here."
|
||||
fi
|
|
@ -1,10 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
git_directory=$PWD/.git
|
||||
if [[ -d $git_directory ]];then
|
||||
git add .
|
||||
read -p "Enter commit name: " commit_name
|
||||
git commit -m "$commit_name"
|
||||
else
|
||||
echo "Git wasn't initialized here."
|
||||
fi
|
|
@ -1,11 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
git_directory=$PWD/.git
|
||||
if [[ -d $git_directory ]];then
|
||||
git add .
|
||||
read -p "Enter commit name: " commit_name
|
||||
git commit -m "$commit_name"
|
||||
git push
|
||||
else
|
||||
echo "Git wasn't initialized here."
|
||||
fi
|
Loading…
Reference in a new issue