评:
git remote
git remote 不带参数,列出已经存在的远程分支,例如:
#git remote
origin_apps
git remote -v | --verbose 列出详细信息,在每一个名字后面列出其远程url,例如:
#git remote -v
origin_apps gitolite@scm:apps/Welcome.git (fetch)
origin_apps gitolite@scm:apps/Welcome.git (push)
需要注意的是,如果有子命令,-v | --verbose需要放在git remote与子命令中间。
git remote add name url 在url创建名字为name的仓库(Adds a remote named <name> for the repository at <url>)
name为远程仓库的名字
git remote show name 必须要带name,否则git remote show的作用就是git remote,给出remote name的信息。
git remote用法总结
原创
©著作权归作者所有:来自51CTO博客作者mb6440a93307547的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
git clone 与 git 安装
git clone 与 git 安装
git 安装程序 自定义 -
Artemis 命令用法
Artemis高级用法
读取文件 shell脚本 批量删除 mq artemis -
git remote 命令的用法
查看关联的远程仓库信息# 查看关联的远程仓库的名称git remote# 查看关
远程仓库 git javascript -
git remote
列举出所有的远程主机名。
git 主机名 编程 -
git 增加 remote 地址 git remote add
一、新建仓库git初始化 ,并设置remote地址$ git init $ git remote add github地址 2. 将全部文件加入git版本管理,提交文件并注释,推送到远程分支(git提交“三步走”) $ git add .$ git commit -m "注释"$ git push 3.生成密钥,打印密钥,(添加密钥完成后)验证是否配置成功 $ ssh-keygen
git 增加 remote 地址 git add remote git ignore 怎么添加和删除 git ignore设置 git push被拒绝