在Github提交pr

在 github 提交 pr

  • fork 一份到自己的仓库
  • 设置本地的 origin url: git remote set-url origin https://github.com/lyloou/WeexErosFramework.git
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 查看默认上游的远程信息
git remote show origin

# 添加多一个上游
git remote add upstream https://github.com/bmfe/WeexErosFramework.git

# 查看新上游的远程信息
git remote show upstream

# 将上游upstream的新内容拉取下来
git pull upstream master:master

# 修改提交
git add .
git commit -m "new feature"
git push
  • 进入自己 fork 的项目

  • 有个new pull request按钮,按照提示进行即可

第一次参与开源

first-contributions/README.chs.md at master · firstcontributions/first-contributions

如何为开源做贡献 | Open Source Guides
第一次贡献 使用文档 - Erupt Framework