git 명령어
- git reset undo
git reset 'HEAD@{1}'
- untracked files 한 번에 제거하는 방법
git clean -f git clean -fd # directory까지 제거
- unstaged files 한 번에 discard 하는 방법
git checkout -- .
- conflict 발생 시 특정 branch 상태로 선택하는 방법
git checkout --theirs path/to/file git checkout --ours path/to/file
- git submodule로 다른 repository를 특정 directory에 link를 걸 수 있다
- 하지만, 다른 repository의 특정 directory만을 link 걸 순 없다