littlenines / git-commands

Basic git commands that i need

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GIT

Basic git commands, probably gonna add more with time

Initialize git
git init

Target the repo on github where you're gonna push and pull
git remote add origin https:/...link to repo here

Check remote
git remote -v

Add all files
git add .

Commit
git commit -m "input message"

Push
git push origin master

About

Basic git commands that i need