怎么修改Git remote add时使用的远程仓库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么修改Git remote add时使用的远程仓库相关的知识,希望对你有一定的参考价值。

参考技术A ▶ git remote help
error: 未知子命令:help
用法:git remote [-v | --verbose]
或:git remote add [-t <分支>] [-m <master>] [-f] [--tags|--no-tags] [--mirror=<fetch|push>] <名称> <url>
或:git remote rename <旧名称> <新名称>
或:git remote remove <名称>
或:git remote set-head <名称> (-a | --auto | -d | --delete |<分支>)
或:git remote [-v | --verbose] show [-n] <名称>
或:git remote prune [-n | --dry-run] <名称>
或:git remote [-v | --verbose] update [-p | --prune] [(<组> | <远程>)...]
或:git remote set-branches [--add] <名称> <分支>...
或:git remote set-url [--push] <名称> <新的地址> [<旧的地址>]
或:git remote set-url --add <名称> <新的地址>
或:git remote set-url --delete <名称> <地址>

-v, --verbose 冗长输出;必须置于子命令之前本回答被提问者和网友采纳
参考技术B 界面操作比较简单。安装TortoiseGit,在你的工程目录下右键环境菜单,选择tortoisegit->setting->选择git-remote,修改即可。

git 添加码云远程仓库和上传到码云的命令

 添加远程仓库

git remote add Zk  仓库地址.git

查看远程仓库

git remote -v

上传远程仓库

git push Zk master


删除远程仓库Zk
git remote rm Zk

以上是关于怎么修改Git remote add时使用的远程仓库的主要内容,如果未能解决你的问题,请参考以下文章

git里面怎么看local branch和remote branch的关系

Git 撤销(回退)

Git 创建新分支并提交到远程仓

git 本地文件内容更改以后怎么同步到远程仓库

生成git连接远程库

Git创建远程分支