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 存储库,我想将它们与 Github 同步以进行远程访问。
如何将这些本地存储库克隆到 Github?
在此之后,是否只是将 github repo 分配为本地服务器 repo 的远程的一种情况?
只需在 GitHub 上创建您的存储库,然后将 GitHub 添加为远程并推送您要推送的分支:
git remote add github git@github.com:user/repo.git git push github master