การเปลี่ยน Remote URL ของ GIT Repository จำเป็นต้องใช้ 2 คำสั่งดังนี้
- คำสั่งสำหรับตรวจสอบ GIT remote URL ปัจจุบัน
git remote -v
- คำสั่งสำหรับตั้งค่า Remote URL ของ GIT Repository ใหม่
git remote add <new_remote_name> <new_git_remote_url>
$ git remote -v origin git@github.com:username/project.git (fetch) origin git@github.com:username/project.git (push) $ git remote add test git@github.com:username/project2.git $ git remote -v origin git@github.com:username/project.git (fetch) origin git@github.com:username/project.git (push) test git@github.com:username/project2.git (fetch) test git@github.com:username/project2.git (push)
ข้อมูลเพิ่มเติม สามารถอ่านได้ที่ Adding a remote
No comments:
Post a Comment