Chuyển đến nội dung chính

Bài đăng

Đang hiển thị bài đăng từ Tháng 7, 2015

Thay đổi URI (URL) cho remote GIT repository

Dự án của bạn cần thay đổi repository, chuyển từ GitHub sang VisualStudio hay Bitbucket. Bạn không muốn phải pull source về từ đầu. Bạn có thể làm theo cách sau để sử dụng lại source cũ. git remote -v # View existing remotes # origin https://github.com/user/repo.git (fetch) # origin https://github.com/user/repo.git (push) git remote set-url origin https://github.com/user/repo2.git # Change the 'origin' remote's URL git remote -v # Verify new remote URL # origin https://github.com/user/repo2.git (fetch) # origin https://github.com/user/repo2.git (push) Chúc các bạn thành công!