vpn-client-script/push-to-repo

14 lines
237 B
Plaintext

#---------------Pushing-to-repo-----------------
push (){
echo -e "Start Pushing To Repo:"
git add .
git commit -m "add new client= $userinput"
git push
echo -e "Done Pushing."
}
#-----------------End--Pushing------------------