Skip to content

Instantly share code, notes, and snippets.

@GiuseppeMP
Last active November 19, 2019 23:23
Show Gist options
  • Save GiuseppeMP/4d1bd843ad111572d11cd81ca9ad6343 to your computer and use it in GitHub Desktop.
Save GiuseppeMP/4d1bd843ad111572d11cd81ca9ad6343 to your computer and use it in GitHub Desktop.
Create repository using cli
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:<username>/<reponame>.git
git push -u origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment