📅  最后修改于: 2023-12-03 15:00:57.627000             🧑  作者: Mango
当你需要将你的现有代码推送到新的 Git 存储库时,你可以通过以下步骤实现。
首先,在 Git 托管服务上创建一个新的存储库,比如Github或者GitLab。
使用 git clone
命令从现有存储库中获取代码。
git clone https://github.com/your-username/your-existing-repository.git
进入到 Git 代码库目录中,使用 git remote
命令添加新的远程 Git 存储库。
cd your-existing-repository
git remote add new-remote-repository https://github.com/your-username/your-new-repository.git
使用 git push
命令将你的代码推送到新的远程存储库中。
git push new-remote-repository master
上面的命令将 master
分支推送到新的远程存储库中。如果你需要推送其他分支,只需要将 master
替换为相应的分支名称即可。
在新的 Git 存储库中查看你推送的代码,以确保它已经被成功推送到目标存储库中。
以上就是将现有代码推送到新存储库的过程。