第一次 pull request 记录
使用 helm 安装 incubator/zookeeper 过程中,发现了一个 BUG。 https://github.com/helm/charts/pull/18275
过程
- fork helm/charts 仓库
- 创建分支
vflong-patch-1
并修改代码提交 - 发起
pull request
注意事项
- 直接在 github web 页面修改代码时需要添加
Signed-off-by: Joe Smith <joe.smith@example.com>
格式的认证信息,若未添加,可以重新 commit。git clone git@github.com:vflong/charts.git -b vflong-patch-1 git config user.email 'weifeilong2013@gmail.com' git config user.name 'feilong' git commit --amend --signoff git push --force-with-lease origin vflong-patch-1