Skip to content

Instantly share code, notes, and snippets.

View Nasirul-Islam's full-sized avatar
🎯
Focusing

Nasirul Islam Nasirul-Islam

🎯
Focusing
View GitHub Profile
@Nasirul-Islam
Nasirul-Islam / Setting_upa_new_repo.md
Created September 24, 2025 17:25 — 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