Git Basic Command
Create repository
git init
Untrack files
git rm --cached filename
Get remote repository
git clone url
Stage all files
git add --all
Push commits to remote repo
git push alias branch
Pull changes from remote repo
git pull alias branch
Show log
git log
|