This commit is contained in:
2024-09-05 09:27:22 +02:00
parent 1a8d6d931d
commit 14b143f9ec
4 changed files with 13 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Create a new repository on the command line
echo "# Arch" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M Home
git remote add origin https://github.com/InoriShio/Arch.git
git push -u origin Home
# Push an existing repository from the command line
git remote add origin https://github.com/InoriShio/Arch.git
git branch -M Home
git push -u origin Home