From 36b7c2a18f54b06cfd38fbb8165b5797f626487c Mon Sep 17 00:00:00 2001 From: Die Antwoord Date: Mon, 23 Jan 2023 14:22:00 +0200 Subject: [PATCH] Update to main --- readme.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index ed7c8fa..0407354 100644 --- a/readme.md +++ b/readme.md @@ -8,17 +8,31 @@ https://git.codingvm.codes/dieantwoord/Discord-Bot-Python.git Creating a new repository on the command line touch README.md + git init + git checkout -b main + git add README.md -git commit -m "first commit" + +git commit -a -m "first commit" + git remote add origin https://git.codingvm.codes/dieantwoord/Discord-Bot-Python.git + git push -u origin main --------------------------------------------------------------------------------------- Pushing an existing repository from the command line git remote add origin https://git.codingvm.codes/dieantwoord/Discord-Bot-Python.git + git push -u origin main ---------------------------------------------------------------------------------------- \ No newline at end of file +--------------------------------------------------------------------------------------- +Update changes + +git commit -a -m "your comment" + +git push -u origin main + +---------------------------------------------------------------------------------------