如何添加我在存储库中使用的库的错误修复

时间:2014-01-23 10:06:45

标签: git maven github

在我的maven项目中,我使用了文库orientdb-1.6.2。除了手动添加/删除代码行之外,还有办法添加错误修复(例如这个https://github.com/orientechnologies/orientdb/commit/c3fab473c588d91523a582229293dbd14155999e)吗?

1 个答案:

答案 0 :(得分:0)

修复错误的最简单方法是:

  1. 点击Fork按钮链接,在 Github 上分享回购;

  2. 克隆forken repo:

    git clone https://...
    
  3. 修复该分支的错误,修复该错误:

    vim ...
    git add a_fixed_file
    git commit
    
  4. 将其推入forken repo:

    git push https://...
    
  5. 点击Pull Request链接

  6. 打开拉取请求