如何将 VS Code 中的某些文件提交到 GitHub?

如何将 VS Code 中的某些文件提交到 GitHub?

开发人员只想提交某些文件。但无法提交,因为它需要干净(暂存并提交所有更改)工作目录。

答案1

如有疑问,只需使用命令提示符即可。 “git add”用于暂存的内容,“git commit -m”在添加完所有内容后。

如果您在本地进行了更改,则可以“git stash”,进行更改,然后在提交后“git stash pop”。

答案2

要提交某些文件,您需要执行以下操作,如下所示:

git status 
git add . // for all files
git add "fileName" // for a specific file
git commit -m "the Message" //change message for commit 

然后,只需使用git push命令即可。

相关内容