Skip to content

Instantly share code, notes, and snippets.

View Huntinex's full-sized avatar
🎯
Focusing

HuntineX Huntinex

🎯
Focusing
View GitHub Profile
resolvers:
- 1.1.1.1
- 1.0.0.1
- 8.8.8.8
- 8.8.4.4
- 9.9.9.9
- 9.9.9.10
- 77.88.8.8
- 77.88.8.1
- 208.67.222.222
@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