Git 克隆:删除警告 "you appear to have cloned an empty repository"
Git clone: remove warning "you appear to have cloned an empty repository"
我想删除使用 git clone
克隆空存储库时的警告。
与 this question 不同,我想要一个适用于所有语言的解决方案。我的电脑是法语的,消息是 warning: Vous semblez avoir cloné un dépôt vide.
,我的一些同事的电脑是英文的。
我的问题有更优雅的解决方案吗?
遗憾的是,没有配置变量或命令行选项可以关闭此警告(请参阅 the code in clone.c
)。
我看到的选项是:
- 禁用所有标准错误,
- 找出该消息的翻译并将其 grep 出来,
- 为
git init && git remote add origin <url>
写一个别名
我想删除使用 git clone
克隆空存储库时的警告。
与 this question 不同,我想要一个适用于所有语言的解决方案。我的电脑是法语的,消息是 warning: Vous semblez avoir cloné un dépôt vide.
,我的一些同事的电脑是英文的。
我的问题有更优雅的解决方案吗?
遗憾的是,没有配置变量或命令行选项可以关闭此警告(请参阅 the code in clone.c
)。
我看到的选项是:
- 禁用所有标准错误,
- 找出该消息的翻译并将其 grep 出来,
- 为
git init && git remote add origin <url>
写一个别名