Git! 명령어로 이해하기!
git 의 필수 명령어를 배울 수 있는 과정입니다.
시작하기
01
git이란?
필수 명령어
01
git init
02
git clone
03
git add
04
git commit
05
git status
06
git diff
07
git checkout
08
git reset
09
git revert
10
git log
11
git show
12
git tag
13
git push
14
git pull
브랜치(branch)
01
소개
02
git branch
03
git checkout -b
04
git branch --set-upstream-to
05
git branch --unset-upstream
병합(merge)
01
소개
02
git merge
03
git rebase
04