diff --git a/README copy.md b/README copy.md new file mode 100644 index 0000000..8540ee7 --- /dev/null +++ b/README copy.md @@ -0,0 +1 @@ +hi 123 \ 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..8261161 --- /dev/null +++ b/gitea_client_uploader_comands.sh @@ -0,0 +1,30 @@ +# 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 +git remote add origin http://192.168.1.203:3000//.git +git push -u origin main + + + +# example snippet +git remote set-url origin http://192.168.1.203:3000/dhruv/first.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