1.克隆 git clone +地址
2. cd 克隆下的文件
3.注意:安装依赖 git init
4. 运行
5.创建分支 git branch amber-sls(分支名称)
6.切换分支 git checkout amber-sls
7.拉取master git pull origin master
8.add git add . (add所有的修改) git add 具体的修改内容
9.git commit -m "对修改信息的概括"
10.git push origin amber-sls(分支名称)
补充:git status 查看状态
git branch 查看所有分支
git checkout 切换分支
网友评论