Skip to content

Instantly share code, notes, and snippets.

View MuhammedTech's full-sized avatar
🎯
Focusing

Mukammed Alimbet MuhammedTech

🎯
Focusing
View GitHub Profile
@alexpchin
alexpchin / Setting_upa_new_repo.md
Last active July 15, 2024 21:19
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