git 未考虑Commit -m [已关闭]

k3bvogb1  于 2023-04-10  发布在  Git
关注(0)|答案(2)|浏览(259)

**已关闭。**此问题为not reproducible or was caused by typos。当前不接受答案。

这个问题是由一个错字或一个无法再复制的问题引起的。虽然类似的问题可能是on-topic在这里,但这个问题的解决方式不太可能帮助未来的读者。
2天前关闭。
Improve this question
当我发送命令提交一个版本时,什么也没有发生。

$ git status

On branch main
Your branch is up to date with `'origin/main'`.

nothing to commit, working tree clean

$ git commit -m "Ajout de la fonction get_soup_file "

On branch main
Your branch is up to date with `'origin/main'`.

nothing to commit, working tree clean

为什么不考虑commit命令?

x4shl7ld

x4shl7ld1#

您尚未添加任何要推送到远程位置的更改。
git status
你会看到一些红色的文件名。这些需要被添加到提交中。
用途:
git add nameOfFilesYouWantToPush
然后你应该可以做git commit -m "CommitDescription"
提交基本上是当你对你的代码做了你满意的修改,并且你想把这些修改推到远程位置。

bnl4lu3b

bnl4lu3b2#

你还没有提交任何东西。也就是说,你需要首先使用git add命令来暂存你的更改。但是,为了能够使用git add命令,你还需要做一些更改并保存更改。这样,当你执行git status时,你会看到你修改了一些文件。

相关问题