Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在终端中运行“git push”,它不会更新我在 github 上的存储库;但是,如果我初始化 git,并运行以下三个命令:'git init'、'git add .',最后是 'git commit -m "Initial commit"',那么存储库就会更新。
有人能帮我吗?
尝试在不运行的情况下执行此操作git init。这就是设置新存储库的命令。由于您已经有一个克隆,因此无需创建任何内容。
git init
此外,您实际上需要进行一些更改才能提交。在运行it status之前运行agit add .以查看您是否确实有要提交的更改。
it status
git add .