Press "Enter" to skip to content

GIT一般使用流程

1、安装好git

2、拉取远程仓库代码 git clone ….代码仓库地址

3、设置账号和邮箱

$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"

(如果需要权限认证则需要在本地创建ssh的key 公私钥)

ssh-keygen -t rsa -C  youremail@example.com

4、一般在dev上进行开发、完了之后到test、最后到online

git分支策略 – 行舟PHP日志 (tanxiaodian.com)

发表评论