참고 영상 & 출처 : https://www.youtube.com/watch?v=Z9dvM7qgN9s&t=385s
Git install
SourceTree install
user name, email setting
git config --global user.name " "
git config --global user.email " "
git config --global --list
core.autocrlf 명령어
디렉토리 만들기
만들어진 디렉토리에서 git init으로 git 초기화 하기
git init
해당 디렉토리에 .git으로 숨겨진 파일이 초기화되어 있는 것을 볼 수있다.
→ UI로도 볼 수 있다.
단축어 생성
→ git status 를 입력해야지 되는 명령어를 git st로 가능하도록 단축어를 만들었다.
git config 옵션
git config -h