Git

Tips

  • git status 필수 옵션

    • git status -s -uall

    • -uall: untracked 파일들이 디렉토리 아래에 있을 경우에 디렉토리만 보여주는것이 아닌 모든 파일을 다 보여줌

    • -s: short 포맷으로 간략하게 보여줌

  • git pull 필수 옵션: 자동으로 리베이스 & 스태쉬

    git config --global pull.rebase true
    git config --global rebase.autoStash true

Last updated

Was this helpful?