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
- VirtualBox
- lsof
- port
- vscode
- profile
- context
- web.xml
- bash
- netsh
- find
- tomcat
- resource
- import
- JavaScript
- grep
- GIT
- Windows 10
- Eclipse
- plugin
- 단축키
- Windows
- 네트워크
- Source
- Mac
- xargs
- Quartz
- ssh
- IntelliJ
- maVen
- 줄바꿈 문자
Archives
- Today
- Total
목록2024/05 (14)
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