
git 참고 및 원문사이트 [https://rogerdudler.github.io/git-guide/index.ko.html]() [https://git-scm.com/book/ko/v1/Git%EC%9D%98-%EA%B8%B0%EC%B4%88-Git-%EC%A0%80%EC%9E%A5%EC%86%8C-%EB%A7%8C%EB%93%A4%EA%B8%B0]() 이미 사용중인 디렉토리를 GIT 저장소로 만들기 git init: .git 이라는 하위 디렉토리 생성됨 (skeleton : 뼈대가 되는 파일) [root@localhost public_html]# ll .git/ -rw-r--r-- 1 root root 23 11월 27 09:52 HEAD drwxr-xr-x 2 root root 6 11월 27 09..
git 설치 원문 & 참고 [http://morningame.tistory.com/27](http://morningame.tistory.com/27) http://morningame.tistory.com/27 설치 yum install gitgit 사용자 추가 git config-global user.name "takakocap" git config-global user.email "takakocap@kensei.co.kr"git 환경 설정 git config-global color.ui.auto git config-global alias st.statusgit 설정 확인 git config -l user.name=rmtest user.email=takakocap@naver.com color.ui=auto