Files
Arch/Git.sh
T
2024-09-05 09:27:22 +02:00

13 lines
387 B
Bash

# 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