From 88c569afd22ef0bd92a9296e7dd5f73590d09a86 Mon Sep 17 00:00:00 2001 From: ZockerKatze Date: Wed, 11 Jun 2025 11:17:37 +0200 Subject: [PATCH] git commands --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ff7f52..ff99d4d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ # HTML -schools html repo \ No newline at end of file +schools html repo + + +# Git Setup + +Initialize and push to the remote repository: + +```bash +git init +git add . +git commit -m "Initial commit" +git remote add origin http://100.64.96.20:3002/rattatwinko/HTML.git +git branch -M main # optional, if using 'main' instead of 'master' +git push -u origin main