remove unused scripts

This commit is contained in:
Frost-Phoenix 2024-01-12 17:35:59 +01:00
parent e08a94cbae
commit 0d0afbfd7c
3 changed files with 0 additions and 31 deletions

View file

@ -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

View file

@ -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

View file

@ -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