我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。
我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。
到目前为止,我可以看到两个解决方案:
把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。
我在我的硬盘上(本地)克隆的USB键上有一个repo(起源)。我将“起源”转移到NAS,并成功测试了从这里克隆。
我想知道我是否可以在“本地”设置中更改“起源”的URI,所以它现在将从NAS中拖动,而不是从USB键。
到目前为止,我可以看到两个解决方案:
把一切推到USB起源,然后将其复制到NAS(这意味着由于NAS起源的新承诺而付出很多工作);添加一个新的远程到“本地”并删除旧的(我担心我会打破我的历史)。
你可以
git remote set-url origin new.git.url/here
您也可以编辑.git/config 并在那里更改 URL。
你没有失去历史的危险,除非你做一些非常愚蠢的事情(如果你担心,只是做一个复印件,因为你的复印件是你的历史)。
更改主机为 Git Origin 服务器
从: http://pseudofish.com/blog/2010/06/28/change-host-for-a-git-origin-server/
希望这不是你需要做的事情,我已经使用的服务器在一些 git 项目上合作,域名终止了,这意味着找到一个方式来迁移当地存储库以恢复同步。
更新: 感谢 @mawolf 指出,最近的 git 版本有一个简单的方式(发表于 2010 年 2 月):
git remote set-url origin ssh://newhost.com/usr/local/gitroot/myproject.git
如果你有更古老的版本,那就尝试一下:
在工作目录中编辑.git/config 文件,您应该看到如下:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = ssh://oldhost.com/usr/local/gitroot/myproject.git
更改 oldhost.com 到 newhost.com,保存文件,你已经完成了。
从我的有限测试(git pull 起源; git push 起源; gitx)一切似乎顺序。
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
git remote set-url origin git://new.location
(替代,打开.git/config,搜索 [远程“起源”),并编辑 url = 行。
你可以检查它工作,通过检查远程:
git remote -v
# origin git://new.location (fetch)
# origin git://new.location (push)
接下来的按钮,你将不得不指定新的上流分支,例如:
git push -u origin master
此分類上一篇: GitHub: 更改遠程 URL
此分類上一篇: git remote set-url {name} {url}
git remote set-url origin https://github.com/myName/GitTest.git
使用 gitbash git 远程 rm 起源命令删除起源 现在使用 gitbash git 远程 添加起源 添加新起源(从您的项目存储库中复制 HTTP 地址)完成
如果你克隆了你的本地将自动组成,
远程 URL 在那里它被克隆。
您可以使用 git remote -v 查看。
如果你想改变它,
git remote set-url origin https://github.io/my_repo.git
这里,
起源 - 你的分支
如果你想重写现有分支,你仍然可以使用它......它会重写你的现有分支......它会
git remote remove url
and
git remote add origin url
為你...
如果您正在使用 TortoiseGit 然后遵循下面的步骤:
转到您的本地查询文件夹,然后右键单击转到 TortoiseGit -> 设置 在左键中选择 Git -> Remote 在右键中选择起源 现在更改 URL 文本框值到您的新远程存储库的位置
你的分支和所有的地方承诺将保持不稳定,你可以继续像以前那样工作。
转换远程URL
开放终端。
Ist 步骤: 将当前工作目录更改为本地项目。
第二步:列出您的现有远程,以获得您想要更改的远程的名称。
远程 -v
origin https://github.com/USERNAME/REPOSITORY.git (fetch)
origin https://github.com/USERNAME/REPOSITORY.git (push)
从 HTTPS 更改远程 URL 到 SSH 使用 git 远程设置 URL 命令。
第三步:- git 远程设置 URL 起源 git@github.com:USERNAME/REPOSITORY.git
步骤4:现在确保远程 URL 已改变。
git 远程 -v 查看新远程 URL
origin git@github.com:USERNAME/REPOSITORY.git (fetch)
origin git@github.com:USERNAME/REPOSITORY.git (push)
此分類上一篇
麻烦解决:
您可能遇到这些错误,当尝试更改一个远程。
这个错误意味着你试图改变的远程不存在:
git remote set-url sofake https://github.com/octocat/Spoon-Knife fatal: 没有这样的遥远的“sofake”
确保您正确输入了远程名称。
参考 : https://help.github.com/文章/变更-a-remote-s-url/
查看 git 远程连接:
git remote -v
现在,将本地存储库设置为远程 git:
git remote set-url origin https://NewRepoLink.git
现在让它升级或按下使用下列代码:
git push --set-upstream 起源大师 -f
你有很多方法可以做到这一点:
安慰
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 URI 到 git@github.com 而不是 https://github.com
git remote set-url origin git@github.com:<username>/<repo>.git
例子:
git remote set-url origin git@github.com:Chetabahana/my_repo_name.git
优点是,当您使用 ssh 代理时,您可以自动进行 git push :
#!/bin/bash
# Check ssh connection
ssh-add -l &>/dev/null
[[ "$?" == 2 ]] && eval `ssh-agent`
ssh-add -l &>/dev/null
[[ "$?" == 1 ]] && expect $HOME/.ssh/agent
# Send git commands to push
git add . && git commit -m "your commit" && git push -u origin master
插入一个脚本文件 $HOME/.ssh/agent 让它运行 ssh-add 使用预期如下:
#!/usr/bin/expect -f
set HOME $env(HOME)
spawn ssh-add $HOME/.ssh/id_rsa
expect "Enter passphrase for $HOME/.ssh/id_rsa:"
send "<my_passphrase>\n";
expect "Identity added: $HOME/.ssh/id_rsa ($HOME/.ssh/id_rsa)"
interact
对于那些想要从 Visual Studio 2019 进行此更改的人来说
開啟 Team Explorer (Ctrl + M)
Home > 设置
Git -> 存储器设置
此分類上一篇: Edit
此分類上一篇
从您的 repo 终端写下下下面的命令:
git remote set-url origin git@github.com:<username>/<repo>.git
请参阅此链接,以获取有关更改远程URL的详细信息。
查看您的特权
在我的情况下,我需要检查我的用户名
我有兩個或三個存储庫,有清潔的信件。
问题是我的许可我有两个私人 git 服务器和存储库
这个第二个帐户是该新 repo 的管理员,第一个是我的默认用户帐户,我应该允许首先
您可以通过编辑 config 文件来更改 URL。
nano .git/config
然后编辑 url 字段并设置新的 url. 保存更改. 您可以使用命令验证更改。
git remote -v
更改远程上流: git 远程设置 URL 起源 <url>
要添加更多升级: git remote 添加新位置 <url>
因此,您可以选择在哪里工作 git push 起源 <branch> 或 git push newplace <branch>
正如我们在这里看到的那样,
$ git remote rm origin
$ git remote add origin git@github.com:aplikacjainfo/proj1.git
$ git config master.remote origin
$ git config master.merge refs/heads/master
移除远程
使用 git 远程 rm 命令从您的存储库中删除远程 URL。
$ 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 -v
如果您的存储库使用SSH,您会看到这样的东西:
> origin git@github.com:USERNAME/REPOSITORY.git (fetch)
> origin git@github.com:USERNAME/REPOSITORY.git (push)
如果您的存储库使用 HTTPS,您会看到这样的东西:
> origin https://github.com/USERNAME/REPOSITORY.git (fetch)
> origin https://github.com/USERNAME/REPOSITORY.git (push)
取决于 git 远程 -v 的输出,您可以以以下方式更改 URL:
在 SSH 的情况下,您可以从 REPOSITORY.git 更改 URL 到 NEW_REPOSITORY.git 如下:
$ git remote set-url origin git@github.com:USERNAME/NEW_REPOSITORY.git
而在 HTTPS 的情况下,您可以从 REPOSITORY.git 更改 URL 到 NEW_REPOSITORY.git 如下:
$ git remote set-url origin https://github.com/USERNAME/NEW_REPOSITORY.git
注意: 如果您已更改了 GitHub 用户名,您可以按照上述相同的过程更新与您的存储库相关的用户名的更改。
另一种方法是重新命名“旧”起源(在下面的例子中,我简单地称之为旧起源),并添加一个新的。
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
如果您想在原始URL中设置用户名和密码,您可以遵循下面的步骤。
输出密码在变量将避免与特殊字符的问题。
步骤:
export gituser='<Username>:<password>@'
git remote set-url origin https://${gituser}<gitlab_repo_url>
git push origin <Branch Name>
对于我来说,接受的答案只在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
(仅限 Windows PS) 在所有本地休息室中重复更改服务器/协议
Get-ChildItem -Directory -Recurse -Depth [Number] -Hidden -name | %{$_.replace("\.git","")} | %{git -C $_ remote set-url origin $(git -C $_ remote get-url origin).replace("[OLD SERVER]", "[NEW SERVER]")}
如果你在Linux或Mac上有 sed/grep,它也很容易改变,而不会失去联系。
最近我做了这个改变我的用户名所有我的存储库在配置中本地,但我已经做到了相同的方法,远程线也完全。
VARIABLE_FIND='old'; VARIABLE_REPLACE='new'; path_name='~/PycharmProjects/*/.git/'; grep -rl --include=config "${VARIABLE_FIND}" "${path_name}" | xargs sed -i "s|${VARIABLE_FIND}|${VARIABLE_REPLACE}|g"
要替换整个线路,在那里有一个比赛,你可以这样做:
VARIABLE_FIND='someneedle'; VARIABLE_REPLACE='somenewvalue'; path_name='/home/*/' grep -rl --include=config "${VARIABLE_FIND}" "${path_name}" | xargs sed -i "/${VARIABLE_FIND//\//\\/}/c\\${VARIABLE_REPLACE}" ;
参考: 用 Sed 替换包含一条线的整个线
这是非常容易和简单的;只需遵循这些指示。
要添加或更改远程起源: git 远程设置 URL 起源 githubrepurl 查看您目前在本地存储库中有哪些远程 URL: git 远程显示起源
首先,您需要输入此命令以查看现有远程
远程 -v
然后第二,你需要输入这个命令,以更改“起源”远程的URL
git 远程设置 URL 起源 <paste 您的 GitHub 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
它会很好,你可以尝试这个
对于SSH:
命令: git 远程设置 URL 起源 <ssh_url>
例如: git 远程设置 URL 起源 git@github.com:username/rep_name.git
对于HTTPS:
命令: git 远程设置 URL 起源 <https_url>
例如: git 远程设置 URL 起源 https://github.com/用户名/REPOSITORY.git
这个答案属于一个问题,我无法在其他地方找到答案:做这个项目在Gitlab,有一个子组。
git remote add origin git@gitlab.com:group/subgroup/project.git
与所有有“用户名”而不是“组”的答案相反,没有一个通过SSH为我工作。
git remote add origin https://username@gitlab.com/group/subgroup/project.git
请注意两者之间的区别是 ".com:group" 和 ".com/group" 。
如果这不是直接从盒子上工作,我使用了HTTPS方法之前成功使用SSH一个,可能是一个因素,但我不能生气尝试并重复它没有它。