Import
$ svn import [local-path] [host-path] -m "[comment]"

script
svn import $1 [host-path]/$1 -m "Initial Imporrt"



CheckOut
$ svn checkout [host-path]


script

svn checkout [host-path]/$1

주의: local-path 에 $1 과 같은 이름의 디렉토리가 없어야 한다. 즉, import 후 디렉토리를 삭제하고 checkout 을 해야함. 



Commit
$ svn commit [local-path] -m "[comment]"


script

svn commit $1 -m '$2"



Add
$ svn add [local-path]


script

svn add ./$1/$1/$2.h
svn add ./$1/$1/$2.m
svn add ./$1/$1/$2.xib



'Mobile' 카테고리의 다른 글

[MAC] USB 인식 불가  (0) 2012.02.17
[SQLITE] 명령어  (0) 2012.02.15
[xcode] Organizer 에 SVN 등록하기.  (0) 2012.02.10
[xcode] 편집기 단축키  (0) 2012.02.10
약어 모음  (0) 2012.02.02

+ Recent posts