为 GitHub 存储库添加一个 git 远程。
概要
hub remote
add [-p] [选项] USER[/REPOSITORY]
hub remote
set-url [-p] [选项] NAME USER[/REPOSITORY]
选项
- -p
- (已弃用)远程 URL 使用
ssh:
协议,而不是git:
。可写ssh:
协议将自动用于自己的仓库、GitHub Enterprise 远程以及私有或可推送仓库。 - USER[/REPOSITORY]
- 如果 USER 为“origin”,则该值将替换为您的 GitHub 用户名。 REPOSITORY 默认为当前工作目录的名称。
示例
$ hub remote add jingweno
> git remote add jingweno git://github.com/jingweno/REPO.git
$ hub remote add origin
> git remote add origin [email protected]:USER/REPO.git
另请参阅
hub-fork(1)、hub(1)、git-remote(1)