gpt4 book ai didi

选定文件上的 git 存储库提交

转载 作者:行者123 更新时间:2023-12-02 05:35:05 24 4
gpt4 key购买 nike

我在提交选定文件时在 git 存储库中遇到问题。

如果我修改了 4 个文件,就像在 SCM 或 SVN 中一样。但是只想提交两个文件,那么我可以轻松地只提交选定的文件。

但是在 git 中使用 cmd 时:git commit -a。它将提交所有修改过的文件。如果像 git commit filename filename 这样使用 cmd。它不起作用。

所以任何帮助如何在 git 中只提交选定的文件。

最佳答案

不要使用 git commit -a如果你不想提交所有内容 - 自 -a是“全部提交”。

相反,使用 git add <filename>添加您要提交的文件,以及 git commit .

例如,如果您有三个文件 foo , bar , 和 baz ,并且您只想提交对 foo 的更改和 bar ,然后做:

git add foo
git add bar
git commit

(您也可以执行 git add foo bar 以在单个命令中添加这两个文件。)

关于选定文件上的 git 存储库提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11824205/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com