我想刪除bitbucket跟蹤分支。我不確定我使用的術語是否正確,因此可能會導致Google無法提供解決方案的原因。刪除遠程分叉
這是我有:
[email protected]:~/example$ git remote -v
bitbucket [email protected]:TomLeo/example.git (fetch)
bitbucket [email protected]:TomLeo/example.git (push)
origin [email protected]:TomLeo/example.git (fetch)
origin [email protected]:TomLeo/example.git (push)
這就是我想要的:
[email protected]:~/example$ git remote -v
origin [email protected]:TomLeo/example.git (fetch)
origin [email protected]:TomLeo/example.git (push)
一般情況下,你可以看看與'git的幫助一個Git命令的文檔',例如'git help remote'。 –
Chris