From 6dae510cfad2b894ab0cec2471bded439b75e777 Mon Sep 17 00:00:00 2001 From: dhruv Date: Thu, 30 Oct 2025 10:50:00 +0530 Subject: [PATCH] update --- README copy.md | 1 + gitea_client_uploader_comands.sh | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 README copy.md create mode 100644 gitea_client_uploader_comands.sh 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