Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- xargs
- tomcat
- grep
- Eclipse
- Mac
- plugin
- web.xml
- lsof
- bash
- vscode
- port
- profile
- Windows 10
- ssh
- VirtualBox
- 줄바꿈 문자
- netsh
- Quartz
- IntelliJ
- find
- Windows
- JavaScript
- context
- 네트워크
- import
- 단축키
- GIT
- Source
- maVen
- resource
Archives
- Today
- Total
목록2024/05/03 (1)
develog
[git] multiple repository 에 push 하기
remote origin 이 등록되어 있지 않으면 등록한다## remote origin 을 등록한다$ git remote add origin git@github.com:userAA/toy-project## remote 정보 확인$ git remote -vorigin git@github.com:userAA/toy-project (fetch)origin git@github.com:userAA/toy-project (push) origin 에 push url 를 하나 더 등록한다## push url 을 하나 더 등록한다$ git remote set-url --add --push origin git@github.com:userBB/toy-project## remote 정보 다시 확인$ git remote -v..
카테고리 없음
2024. 5. 3. 17:45