git部署服务常用命令,有的时候不是直接拉取master分支,要拉取其他分支,mark下过程。
1.没有项目目录,直接搭建
git clone “git_url”
拉取其他分支
git fetch origin remote_branch:local_branch //如果本地分支没有,会自动创建
git checkout local_branch
查看关联,//一般会默认关联
git branch -vv
下次如果有代码,进入项目目录更新
git pull
2.有项目目录,//有的时候工程中存在其他配置文件,这些文件是git远程仓库中没有的,不能直接用git clone
cd project
git init
git remote add origin “git_url”
git fetch origin remote_branch:local_branch //会自动创建本地分支
设置关联
git branch --set-upstream-to=origin/remote_branch local_branch //origin/remote_branch是你本地分支对应的远程分支,local_branch是你当前的本地分支。
下次如果有代码,进入项目目录更新
git pull
个人推荐直接用第2种方式,如果没有项目手动创建个在用第2种方式也是,不会产生master分支。