Pages

GIT



Git Basic Command


Create reposi­tory
git init
Untrack files
git rm --cached filename
Get remote reposi­tory
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