如何克隆一个特定的分支并仅在 GIT 中将更改推送到该分支
How can I clone a specific branch and push changes to this branch only in GIT
如何克隆一个特定的分支并仅在 GIT 中将更改推送到该分支。
我知道如何克隆一个特定的分支但不确定如何只推送到这个分支。因为没有出错的机会,所以如果有人能提到这一系列的步骤,那就太好了。
要克隆存储库,我在下面尝试了。
git clone -b <branch_name> <url>
克隆一个特定的分支
git clone -b <branch> <remote_repo>
推送到特定的 Git 分支
git checkout YourBranch
git push origin YourBranch
只克隆你的特定分支
git clone -b <Your_Branch> <URL of git_repo>
检查你在正确的分支
git branch -a
输出如下所示
*Your_Branch
remotes/origin/master
* 标记会告诉你在哪个分支 in.Now 进入克隆的存储库和 运行 git 命令将你的更改推送到 git.
cd git_repo
git add *
git commit -m "Did changes/added new files"
git push
以上只会将文件推送到 Your_branch。
如何克隆一个特定的分支并仅在 GIT 中将更改推送到该分支。 我知道如何克隆一个特定的分支但不确定如何只推送到这个分支。因为没有出错的机会,所以如果有人能提到这一系列的步骤,那就太好了。 要克隆存储库,我在下面尝试了。
git clone -b <branch_name> <url>
克隆一个特定的分支
git clone -b <branch> <remote_repo>
推送到特定的 Git 分支
git checkout YourBranch
git push origin YourBranch
只克隆你的特定分支
git clone -b <Your_Branch> <URL of git_repo>
检查你在正确的分支
git branch -a
输出如下所示
*Your_Branch
remotes/origin/master
* 标记会告诉你在哪个分支 in.Now 进入克隆的存储库和 运行 git 命令将你的更改推送到 git.
cd git_repo
git add *
git commit -m "Did changes/added new files"
git push
以上只会将文件推送到 Your_branch。