rifle buss

This commit is contained in:
2025-11-02 06:33:40 -07:00
parent 306c8d2543
commit 80a3fe7928
+5 -3
View File
@@ -6,8 +6,8 @@ read -s -p 'Enter Github Classic Token (https://github.com/settings/tokens): ' g
read -p 'Enter Email Address: ' gh_email read -p 'Enter Email Address: ' gh_email
read -p 'Enter Github Username: ' gh_username read -p 'Enter Github Username: ' gh_username
sudo apt update # sudo apt update
sudo apt install git gh -y # sudo apt install git gh -y
echo "Saving Token to ~/.gh_token" echo "Saving Token to ~/.gh_token"
echo $gh_token > ~/.gh_token echo $gh_token > ~/.gh_token
@@ -21,4 +21,6 @@ echo "Configuring Git"
git config --global user.email "$gh_email" git config --global user.email "$gh_email"
git config --global user.name "$gh_username" git config --global user.name "$gh_username"
echo "DONE WOOO :3~" echo "DONE WOOO :3~"
exit 0