<div class="form-group" >
<input type="password" name="password" class="form-control input-lg" placeholder="Password" required>
</div>
这是运行Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
时的一些输出。
我不介意“未提交更改的更改:”消息,但我不想看到有关如何“更新将要提交的内容”等的“帮助”命令,因为它们只是添加了大量的噪声
我知道git status
,但那不是我真正想要的。
有没有办法摆脱帮助信息?
答案 0 :(得分:7)
在git-config
文档中,您可以找到advice.*
小节的变量$ git config advice.statusHints off
,其解释如下:
<强> statusHints 强>
显示如何从git-status(1)的输出中的当前状态开始,在git-commit(1)中写入提交消息时显示的模板中以及git-checkout显示的帮助消息中的说明(1)切换分支时。
所以我会假设设置
--global
应该删除这些消息(对于本地存储库,对本机上当前用户的所有存储库使用g
)