Skip to content

Instantly share code, notes, and snippets.

@ericchase
Created June 14, 2024 17:25
Show Gist options
  • Save ericchase/29f3f900652323b28fb89b3c31c9d653 to your computer and use it in GitHub Desktop.
Save ericchase/29f3f900652323b28fb89b3c31c9d653 to your computer and use it in GitHub Desktop.

Create a new repository on the command line

echo "# test" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/ericchase/test.git
git push -u origin main

...or push an existing repository from the command line

git remote add origin https://github.com/ericchase/test.git
git branch -M main
git push -u origin main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment