样例
example1
- git clone git@github.com:XXX/yyy.git 把文件clone到本地
- cd yyy
- git checkout dev 切到dev
- 在本地中找到clone下来的文件 把写好的放入
- git status 查看是否填入
- git add . add后有空格 将文件填入
- git status 查看add结果
- git commit -m"xxxxx" 说明加入文件的描述
- git status 查看
- git push origin 上传
工作区 add-->暂存区commit--》仓库push---》远程仓库
开源项目贡献流程
- fork一份到自己的仓库
- git clone 自己仓库 (git clone -b 分支名 自己的仓库地址)
- 进行编写
- (git status) git add . (git status)
- git commit -m""
- git remote add upstream 开源项目仓库地址 (upstream 为地址)
- git push
- 在开源项目github网址上pull request
编写过程中同步最新代码
(删除 已有upstream
git remote rm upstream)
拉取别的分支
从哪拉:git remote add upstream https://github.com/apache/dolphinscheduler.git
拉取最新的:git fetch upstream
新建:git checkout -b json_split_2e upstream/json_split_two