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 存储库然后克隆并使用它的方法。
出于好奇,是否可以跳过克隆并以某种方式初始化并直接使用本地 git 存储库?也就是说,有一种情况,您可以git commit提交更改,但永远不需要调用git push,因为没有支持“远程”存储库。
git commit
git push
自然,这仅适用于单人源代码控制,而不是协作。
赶紧跑
git init
在要用作存储库的目录中。