🔨 refactor(remove): remove extra script(N/A)

This commit is contained in:
Eshan Roy (Eshanized)
2024-06-16 23:05:11 +05:30
parent bd44e2c5ff
commit 67c11b7e0b
2 changed files with 0 additions and 37 deletions

View File

@@ -1,16 +0,0 @@
#!/bin/bash
# Setup Git Credentials
# Git Credential
username="Abhiraj Roy"
useremail="157954129+iconized@users.noreply.github.com"
# Git Config
git config --global user.name "$username"
git config --global user.email "$useremail"
echo -e "\033[0;32mSuccessfully Setup Git Credentials :)"
# Merge
git config pull.rebase false

View File

@@ -1,21 +0,0 @@
#!/bin/bash
# Iconized
pull_from_github(){
git pull
}
push_to_github() {
# git pull
git add .
ezcommits
git push -u origin master
}
main(){
pull_from_github
push_to_github
}
main