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 |
Tags
- xampp
- APM
- nateon
- tw_cli
- 라라벨
- 명령어
- JavaScript
- MOUNT
- Network
- AIR
- Laravel
- ftp
- php5
- exception
- Trac
- redmine
- Linux
- vsftpd
- fstab
- httpd.conf
- BIND
- CentOS
- Fedora
- VMware
- ubuntu
- GlusterFS
- php
- Subversion
- VirtualBox
- MySQL
Archives
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
[Git] remote 저장소 변경 본문
리모트 저장소 변경
1. 현재 리모트 저장소 확인
$ git remote -v
origin https://gitlab.com/group1/project1.git (fetch)
origin https://gitlab.com/group1/project1.git (push)
2. 리모트 저장소 변경/확인
$ git remote set-url origin https://gitlab.com/group2/project2.git
$ git remote -v
origin https://gitlab.com/group2/project2.git (fetch)
origin https://gitlab.com/group2/project2.git (push)
3. 변경된 리모드 저장소에 push
$ git push -u origin master
Comments