Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 765 Bytes

plan.md

File metadata and controls

59 lines (42 loc) · 765 Bytes

Plan

Concepts

Commit

Branch

Workflow

  • git pull
  • git checkout -b my_branch
  • Work
  • git add
  • git commit -m
  • git push
  • git pull origin master
  • git merge master
  • git push
  • git checkout master
  • git pull
  • git merge my_branch
  • git push

Conflict

Tag

Commands

git status

git branch -a

git checkout

git checkout branch git checkout -b branch

git add

git add name git add -A

git commit -m' '

git reset

git reset file_name git reset --hard

git push

git pull

git diff

git log

git log -n X git log --oneline --graph --decorate

git merge branch

git clone

git tag