Git

  • Basic Usage

## ------------------| Git Genaral
git clone <URL>
git status
git add .
git status
git commit -m "CommitComment>
git push 

## ------------------| Git Branch
git checkout -b <BranchName>
git status
git add .
git commit -m "CommitComment>
git push --set-upstream origin <BranchName>

## ------------------| Git Basic
git log
git status
git reflog
git reset --hard
git diff <hash>
  • Git Hooks

Last updated