当我在Visual Studio 2019中创建一个.NET Core项目并将其添加到源代码管理中时,将创建本地存储库而没有任何错误。但是,当我尝试使用Team Explorer将本地存储库发布到私有BiBucket存储库时,只有.gitattributes和.gitignore文件被推送到远程主机。我看不到任何项目文件。
有什么建议吗?
答案 0 :(得分:0)
您需要对项目中的文件执行git add
。我不确定在Visual Studio中是如何做到的。
答案 1 :(得分:0)
第一件事是您需要使用git status
检查git的状态。
之后,您可以使用git add .
添加要提交的文件。
我的案例示例:
git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: package-lock.json
modified: package.json
modified: public/index.html
modified: src/App.js
答案 2 :(得分:0)
在 Visual Studio 中右键单击该文件,然后从 git 选项中选择将忽略的文件添加到源代码管理,然后您只需推送更改