# : comments # no .a files *.a # but do track lib.a, even though you're ignoring .a files above !lib.a # only ignore the TODO file in the current directory, not subdir/TODO /TODO # ignore all files in the build/ directory build/ # ignore doc/notes.txt, but not doc/server/arch.txt doc/*.txt # ignore all .pdf files in the doc/ directory doc/**/*.pdf
1. 깃 명령어 alias 설정 git status 라는 명령어는 깃의 상태를 보여주는 명령어이다. 자주 쓰는 명령어를 단축해서 쓰고 싶다면 git config --global alias.st status : status 명령어를 st로 alias 설정할 수 있다. 2. 깃 명령어 옵션확인하기 명령어에 사용할 수 있는 다양한 옵션들을 확인하고 싶을 때는 명령어 --h 를이용한다. 예를 들면 config라는 명령어의 다른 옵션들이 무엇인지 확인하기 위해서 git config --h