git拉取远程已有分支到本地

新建一个空文件,文件名为aaa:

mkdir aaa

在这里插入图片描述
git拉取远程已有分支到本地_第1张图片
进入aaa文件夹并初始化仓库:

cd aaa
git init

与origin master建立连接(下划线为远程仓库链接):git remote add origin [email protected]:XXXX/nothing2.git

 git remote add origin git@github.com:happychen666/gitTest.git

把远程分支拉到本地:git fetch origin dev(dev为远程仓库的分支名)

git拉取远程已有分支到本地_第2张图片

 git fetch origin test02

git拉取远程已有分支到本地_第3张图片
在本地创建分支dev并切换到该分支:git checkout -b dev(本地分支名称) origin/dev(远程分支名称)

git checkout -b test02 origin/test02

把远程分支上的内容都拉取到本地:git pull origin dev(远程分支名称)

git pull origin test02

git拉取远程已有分支到本地_第4张图片
最后,回到本地文件夹hhhh查看,已完成拉取远程某个分支到本地啦!
git拉取远程已有分支到本地_第5张图片
推送本地分支local_branch到远程分支 remote_branch

1.远程已有remote_branch分支并且已经关联本地分支local_branch且本地已经切换到local_branch

git add .
git commit -m "test02分支提交代码"
git push

2.远程已有remote_branch分支但未关联本地分支local_branch且本地已经切换到local_branch

git push -u origin/remote_branch

3.远程没有remote_branch分支并且本地已经切换到local_branch

git push origin local_branch:remote_branch

你可能感兴趣的:(开发工具)