📌  相关文章
📜  git 将现有代码推送到新存储库 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:00:57.627000             🧑  作者: Mango

Git 将现有代码推送到新存储库 - Shell/Bash

当你需要将你的现有代码推送到新的 Git 存储库时,你可以通过以下步骤实现。

1. 创建新的 Git 存储库

首先,在 Git 托管服务上创建一个新的存储库,比如Github或者GitLab。

2. 克隆现有的代码库

使用 git clone 命令从现有存储库中获取代码。

git clone https://github.com/your-username/your-existing-repository.git
3. 添加新的远程 Git 存储库

进入到 Git 代码库目录中,使用 git remote 命令添加新的远程 Git 存储库。

cd your-existing-repository
git remote add new-remote-repository https://github.com/your-username/your-new-repository.git
4. 推送代码到新的存储库

使用 git push 命令将你的代码推送到新的远程存储库中。

git push new-remote-repository master

上面的命令将 master 分支推送到新的远程存储库中。如果你需要推送其他分支,只需要将 master 替换为相应的分支名称即可。

5. 查看推送的代码

在新的 Git 存储库中查看你推送的代码,以确保它已经被成功推送到目标存储库中。

以上就是将现有代码推送到新存储库的过程。