9Cells

git

작업내용을 무시하고 git pull 받기
git fetch --all
git reset --hard origin/master
git console에서 한글 파일명 깨지는 문제 해결하기
git config --global core.quotepath off

브랜치 생성 후 변경하기

git checkout -b newone

# 위는 다음과 같습니다.
git branch newone
git checkout newone

브랜치를 master에 merge하기

git checkout master
git merge newone

브랜치를 squash merge하기

git checkout master
git merge --squash mybranch
git commit -m "done..."