vpn-client-script/push-to-repo

14 lines
237 B
Plaintext
Raw Normal View History

2022-09-01 20:25:03 +02:00
#---------------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------------------