Differences between revisions 2 and 16 (spanning 14 versions)
Revision 2 as of 2008-09-27 23:22:57
Size: 237
Editor: 218
Comment:
Revision 16 as of 2013-10-31 08:54:18
Size: 1100
Editor: 61
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
 * [http://eagain.net/articles/git-for-computer-scientists/ Tv's cobweb: Git for Computer Scientists]  * [[http://eagain.net/articles/git-for-computer-scientists/|Tv's cobweb: Git for Computer Scientists]]
 * [[http://www.gitcasts.com/posts/railsconf-git-talk|RailsConf Git talk]]
 * [[http://namhyung.springnote.com/pages/3132772|Git 사용자 설명서]]
 * [[http://www.ibm.com/developerworks/kr/library/l-git-subversion-1/|Subversion 사용자를 위한 Git]]
 * [[http://gitimmersion.com/|그냥 따라하기만 하면 됨]]
 * [[http://rogerdudler.github.com/git-guide/index.ko.html|git - 간편 안내서]]
 * [[http://git-scm.com/book/ko/|Pro Git 번역 공개]]
Line 14: Line 20:
git status
git commit -a
git push origin master
git pull origin master
Line 15: Line 25:

주요 명령어들 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 '{}' +
}}}

SeeAlso GitVsMercurial, GitHub

One of the SourceCodeControlSystem

http://git.or.cz/

관련정보

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 '{}' +

SeeAlso GitVsMercurial, GitHub

Git (last edited 2014-05-29 11:23:38 by 61)

web biohackers.net