13 lines
387 B
Bash
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 |