我使用命令
克隆了一个github存储库git config --global user.name "x"
git config --global user.email x
git init
git add -A
git commit -m "message"
git remote add origin /link/
git push -u origin master
现在我在工作区中,并希望将工作区连接到不同的GitHub存储库。怎么做?
感谢您的时间
答案 0 :(得分:0)
如果您已经连接到github reop
,您需要先删除远程 ,
卸下遥控器
使用git remote rm
命令从存储库中删除远程URL。
git remote rm命令采用一个参数: 远程名称,例如目的地:
$git remote -v
# View current remotes
origin https://github.com/OWNER/REPOSITORY.git (fetch)
origin https://github.com/OWNER/REPOSITORY.git (push)
destination https://github.com/FORKER/REPOSITORY.git (fetch)
destination https://github.com/FORKER/REPOSITORY.git (push)
$git remote rm destination
# Remove remote
$git remote -v
# Verify it's gone
origin https://github.com/OWNER/REPOSITORY.git (fetch)
origin https://github.com/OWNER/REPOSITORY.git (push)
注意:git remote rm不会从服务器删除远程存储库。它只是从您的本地存储库中删除了远程及其引用。
第二,我git init新的存储库。
希望有帮助