gpt4 book ai didi

git - 为什么我必须使用 "git commit -a"而不仅仅是 "git commit"?

转载 作者:太空狗 更新时间:2023-10-29 13:28:08 28 4
gpt4 key购买 nike

我正在努力思考 Git 的复杂性。

我使用“git clone [url here]”从 GitHub 下载了一个存储库。

我做了一些更改,尝试使用“git commit”提交它们。这似乎没有将更改推送到我的本地存储库(在本地目录“.git”中),它建议我改用“git commit -a”。

我想知道为什么我必须在“git commit”后附加“-a”,git 中的“stage”和“commit”有什么区别?

最佳答案

-a, --all
Tell the command to automatically stage files that have been modified and deleted, but new files you have not told git about are not affected.

Git 有一个暂存区。默认情况下 git commit 只提交添加到暂存区的数据。 -a 开关提交工作副本本身所有未提交的更改。

暂存区的想法是您可能不想一次提交所有更改。如果是这种情况,您将 git add 您想要提交的文件 - 或者如果您希望它更细粒度,您将 git add -p 并选择仅提交文件中的一些更改。

在 GitHub Git 教程中有一个很好的解释和一张显示它基本工作原理的图片:http://web.archive.org/web/20130519130755/http://learn.github.com/p/normal.html

关于git - 为什么我必须使用 "git commit -a"而不仅仅是 "git commit"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14459927/

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