Size: 761
Comment:
|
Size: 1100
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 12: | Line 12: |
* [[http://git-scm.com/book/ko/|Pro Git 번역 공개]] | |
Line 25: | Line 26: |
주요 명령어들 for [[Subversion]] 사용자 {{{ svn export git archive --format zip --output a.zip }}} 서버쪽 권한오류가 난다면, 다음처럼 {{{ cd /path/to/repo.git chgrp -R groupname . chmod -R g+rwX . find . -type d -exec chmod g+s '{}' + }}} |
One of the SourceCodeControlSystem
관련정보
Quick start
cd codebase git init git add . git status git commit -a git push origin master git pull origin master
주요 명령어들 for Subversion 사용자
svn export git archive --format zip --output a.zip
서버쪽 권한오류가 난다면, 다음처럼
cd /path/to/repo.git chgrp -R groupname . chmod -R g+rwX . find . -type d -exec chmod g+s '{}' +