diff --git a/DEMO.PY b/DEMO.PY deleted file mode 100644 index bd41cba..0000000 --- a/DEMO.PY +++ /dev/null @@ -1 +0,0 @@ -12345 \ No newline at end of file diff --git a/gitea_client_uploader_comands.sh b/gitea_client_uploader_comands.sh new file mode 100644 index 0000000..1ae2ed8 --- /dev/null +++ b/gitea_client_uploader_comands.sh @@ -0,0 +1,74 @@ +# actual +git config --global user.name "YOUR_NAME" +git config --global user.email "you@example.com" + +git init +git add -A +git commit -m "first commit" +git branch -M main + +# remove the previous server's url +git remote remove origin + + +git remote add origin http://192.168.1.203:3100//.git # local ip +git remote add origin https://github.generalinfinity.cloud//.git # gloabl ip + +git remote add origin http://192.168.1.203:3100/dhruv/genesis.git +git remote add origin http://192.168.1.203:3100/dhruv/power-button-to-Rustdesk.git +git remote add origin http://192.168.1.203:3100/dhruv/Free-unlimited-VPN-for-Linux.git +git remote add origin https://github.generalinfinity.cloud/Free-unlimited-VPN-for-Linux.git +git push -u origin main + + + + + + + +# example snippet + +git remote set-url origin http://192.168.1.203:3100//.git # loacl ip +git remote set-url origin https://github.generalinfinity.cloud//.git $ global ip + +git remote set-url origin http://192.168.1.203:3100/dhruv/genesis-.git +git remote set-url origin http://192.168.1.203:3100/dhruv/Free-unlimited-VPN-for-Linux.git +git remote set-url origin http://192.168.1.203:3100/dhruv/power-button-to-Rustdesk.git +git remote set-url origin https://github.generalinfinity.cloud/aksh_intern/.git +git config --global user.name "dhruv" +git config --global user.email "yuvrajyuvrajkukreja@gmail.com" + +touch README.md +git add -A +git commit -m "first commit" +git branch -M main +git push -u origin main + + + + + + + + +# After you edit files (every time) +git add -A +git commit -m "update" +git push + + + + +# Safe fix (pull, then push): +git fetch origin +git pull --rebase origin main +# resolve any conflicts if asked +git push -u origin main + + +# If you really want to overwrite remote with your local: +git push --force-with-lease origin main + + +# tracked by git ( log the git ) +git ls-files \ No newline at end of file