Skip to content

Instantly share code, notes, and snippets.

View kamalsomu's full-sized avatar

Kamal Somu kamalsomu

  • India
View GitHub Profile
@kamalsomu
kamalsomu / Setting_upa_new_repo.md
Created February 5, 2019 06:03 — forked from alexpchin/Setting_upa_new_repo.md
Create a new repository on the command line

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin git@github.com:alexpchin/.git