GitQuickStart
(일부 설명 추가) |
(commit시 유의사항) |
||
29번째 줄: | 29번째 줄: | ||
$ git diff --check | $ git diff --check | ||
+ | |||
+ | 변경사항들은 논리적인 단위로 구분해서 commit을 하도록 한다. 여러개의 이슈가 섞인 형태의 commit은 지양한다. git은 이를 위한 다양한 기능들을 제공한다. | ||
+ | |||
+ | commit 메시지는 해당 작업을 잘 표현할 수 있게끔 작성한다. 첫줄에 35글자 이하로 해당 작업 한줄로 요약한다. (영문의 경우라면 50이하) | ||
+ | 좀 더 상세한 메시지는 한줄 공백 후 상세 내용을 작성한다. | ||
+ | |||
+ | 좋은 commit 메시지의 예시 | ||
+ | |||
+ | <nowiki> | ||
+ | Short (50 chars or less) summary of changes | ||
+ | |||
+ | More detailed explanatory text, if necessary. Wrap it to about 72 | ||
+ | characters or so. In some contexts, the first line is treated as the | ||
+ | subject of an email and the rest of the text as the body. The blank | ||
+ | line separating the summary from the body is critical (unless you omit | ||
+ | the body entirely); tools like rebase can get confused if you run the | ||
+ | two together. | ||
+ | |||
+ | Further paragraphs come after blank lines. | ||
+ | |||
+ | - Bullet points are okay, too | ||
+ | |||
+ | - Typically a hyphen or asterisk is used for the bullet, preceded by a | ||
+ | single space, with blank lines in between, but conventions vary here</nowiki> | ||
= 최초 checkout = | = 최초 checkout = | ||
$ git clone cezanne@git:/home/cvs/git.repos/RVS.git | $ git clone cezanne@git:/home/cvs/git.repos/RVS.git |
2014년 1월 29일 (수) 14:39 판
목차 |
서론
연구소에서 git를 이용한 소스 코드 관리를 추진하고자 한다. git는 기능도 막강하고 무엇보다 분산 Version Control이 가능하여 개인별로 자유로운 버전 관리와 offline 모드 지원이 막강하다.
git 설치 및 설정
Linux 환경에서는 기본적으로 git 프로그램이 설치되어 있다. 만약 설치되어 있지 않다면 Ubuntu 의 경우 다음 패키지를 설치한다.
$ sudo apt-get install git
git을 이용한 commit시 사용되는 기본적인 설정 정보인 사용자 이름과 이메일, commit log 메시지를 작성하는 editor를 등록한다. 설정한 정보는 사용자 홈의 .gitconfig 파일에 기록된다.
$ git config --global user.name "KyungWoon Cho" $ git config --global user.email "cezanne@clunix.com" $ git config --global core.editor vi
git repository 접근 하기 위해서는, 자신의 ssh public key를 등록하여 repository에 대한 접근 권한을 획득해야 한다. ssh public key를 만드는 방법은 SSH 사용법 안내 페이지를 참고
SSH config 설정
보통 ssh client 설정에서 X11 forward는 하지 않도록 다음과 같이 설정한다.
Host git 192.168.12.11 ForwardX11 no
git commit
commit 전 확인 사항
협업시 공백라인이나 공백문자에 의해 변경되는 코드들은 매우 성가신 일이다. commit 전 이러한 부분이 없는지 반드시 아래 명령으로 확인을 하도록 한다.
$ git diff --check
변경사항들은 논리적인 단위로 구분해서 commit을 하도록 한다. 여러개의 이슈가 섞인 형태의 commit은 지양한다. git은 이를 위한 다양한 기능들을 제공한다.
commit 메시지는 해당 작업을 잘 표현할 수 있게끔 작성한다. 첫줄에 35글자 이하로 해당 작업 한줄로 요약한다. (영문의 경우라면 50이하) 좀 더 상세한 메시지는 한줄 공백 후 상세 내용을 작성한다.
좋은 commit 메시지의 예시
Short (50 chars or less) summary of changes More detailed explanatory text, if necessary. Wrap it to about 72 characters or so. In some contexts, the first line is treated as the subject of an email and the rest of the text as the body. The blank line separating the summary from the body is critical (unless you omit the body entirely); tools like rebase can get confused if you run the two together. Further paragraphs come after blank lines. - Bullet points are okay, too - Typically a hyphen or asterisk is used for the bullet, preceded by a single space, with blank lines in between, but conventions vary here
최초 checkout
$ git clone cezanne@git:/home/cvs/git.repos/RVS.git