Skip to content

Instantly share code, notes, and snippets.

@MirceaUngureanu
Last active May 9, 2020 19:59
Show Gist options
  • Save MirceaUngureanu/4904dfcc842854d31c4e09769b57abdd to your computer and use it in GitHub Desktop.
Save MirceaUngureanu/4904dfcc842854d31c4e09769b57abdd to your computer and use it in GitHub Desktop.

Create a new repository on the command line

echo "# glare-loading-animation" >> README.md

git init

git add README.md

git commit -m "first commit"

Note: if the repository doesn't exist in Github, first you will have to create it.

git remote add origin https://github.com/MirceaUngureanu/glare-loading-animation.git

git push -u origin master

Push an existing repository from the command line

git remote add origin https://github.com/MirceaUngureanu/glare-loading-animation.git

git push -u origin master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment