gpt4 book ai didi

git - 我什么时候需要做 "git pull",在 "git add, git commit"之前或之后?

转载 作者:IT王子 更新时间:2023-10-29 00:33:30 25 4
gpt4 key购买 nike

什么是正确的方法?

git add foo.js
git commit foo.js -m "commit"
git pull
git push

或者

git pull
git add foo.js
git commit foo.js -m "commit"
git push

或者

git add foo.js
git pull
git commit foo.js -m "commit"
git push

更新:

我忘了提及,在这种情况下,我使用 git add 暂存一个trackedmodified 文件。不要将全新文件包含到存储库中。这会改变命令的顺序吗?

最佳答案

我认为最好的方法是:

存储您的本地更改:

git stash

更新分支到最新代码

git pull

将本地更改 merge 到最新代码中:

git stash apply

添加、提交和推送您的更改

git add
git commit
git push

根据我的经验,这是 Git 阻力最小的途径(无论如何在命令行上)。

关于git - 我什么时候需要做 "git pull",在 "git add, git commit"之前或之后?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18529206/

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