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