Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 600 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 600 Bytes

GitHub-Commands

GitHub Commands for easy reference

Push:

git init

git add -A

git commit -m ''

git push -u -f origin main

Delete .DS_Store from github

git rm --cached .DS_Store

Add Origin

git remote add origin https://github.com/yourRepoLinkHere/example-website.git

Setup Git (If you get a new computer etc)

$ git config user.name "Your Name"

$ git config user.email "youremail@yourdomain.com"

$ git config user.username "yourUsername"

Confirm

git config --list