- remote 서버 등록하기
git remote add [이름] [실주소]
(ex) $ git remote add TestRemote 192.168.0.1:/git/TestRemote.git
- 현재 branch 의 remote 서버를 redirect하기
현재 repository 의 최상단으로 이동하면 .git/config 라는 파일이 있다. 이 파일을 연다. 내가 현재 있는 branch 이름을 "MyBranch", 연결할 Remote branch 를 TestRemote 라고 하면 아래와 같이 되어 있을수도(설정값이 다를수도 있다. 그냥 있다는데에 의의를 두자.) 있고 아얘 없을 수도 있다.
[branch "MyBranch"]
remote = origin
merge = refs/heads/MyBranch
이것을 아래와 같이 변경한다.
[branch "MyBranch"]
remote = TestRemote
merge = refs/heads/MyBranch
'Tools for Dev' 카테고리의 다른 글
chw - 윈도우 cmd.exe를 대체하자! (0) | 2010.05.28 |
---|---|
LaTeX 에서 PNG image 이용시 발생하는 에러 (0) | 2010.05.13 |
쓰레드에 안전한 초기화용 boost library (2) | 2010.03.19 |
add가 적용된 파일들에 대한 diff를 보는 방법. (0) | 2010.02.26 |
Syntax highlighter Supported language (0) | 2010.02.01 |
댓글