我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。
我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。
到目前为止,我可以看到两个解决方案:
把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。
我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。
我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。
到目前为止,我可以看到两个解决方案:
把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。
当前回答
你有很多方法可以做到这一点:
安慰
git remote set-url origin [Here new url]
只需确保您在存储库的位置打开了它。
确认
它被放置在.git/config (与存储库相同的文件夹)
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = [Here new url] <------------------------------------
...
可口可乐
此分類上一篇
此分類上一篇
然后编辑URL。
源树
点击“设置”按钮在工具栏上打开仓库设置窗口. 点击“添加”添加一个远程仓库路径到仓库. 一个“远程详细”窗口将打开. 输入一个名称的远程路径. 输入 URL/路径的远程仓库 输入用户名的托管服务的远程仓库. 点击“OK”添加远程路径。
此分類上一篇
此分類上一篇
ref. 支持
其他回答
另一种方法是重新命名“旧”起源(在下面的例子中,我简单地称之为旧起源),并添加一个新的。
git remote rename origin old-origin
git remote add origin git@new-git-server.com>:<username>/<projectname>.git
如果你需要推你的地方状态到新的起源:
git push -u origin --all
git push -u origin --tags
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)
更改远程的URL
进入文件夹/repo,您要更改并执行下面的命令:
下面的命令将改变 repo 的 git fetch URL。
git remote set-url origin <your new url>.git
下面的命令将改变 repo 的 git push URL。
git remote set-url --push origin <your new url>.git
下面的命令检查上面的变化是否反映
git remote -v
您可以通过编辑 config 文件来更改 URL。
nano .git/config
然后编辑 url 字段并设置新的 url. 保存更改. 您可以使用命令验证更改。
git remote -v
对于我来说,接受的答案只在Fetch的情况下工作,但不是拖动。
git remote set-url --push origin new.git.url/here
此分類上一篇: fetch URL:
git remote set-url origin new.git.url/here
要更新 pull URL:
git remote set-url --push origin new.git.url/here