Skip to content

Instantly share code, notes, and snippets.

@vimaloctavius
Created October 27, 2020 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vimaloctavius/0dc33e1337dd8619e184ce71b6ad8a98 to your computer and use it in GitHub Desktop.
Save vimaloctavius/0dc33e1337dd8619e184ce71b6ad8a98 to your computer and use it in GitHub Desktop.
Create a new Repo
…or 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/vimal739/test.git
git push -u origin main
…or push an existing repository from the command line
git remote add origin https://github.com/vimal739/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