Applying a diff file with git

后端 未结 6 1583
一个人的身影
一个人的身影 2021-02-18 20:50

So I was trying to use apply a diff file to my git dev branch. The diff I wanted to apply was this one here: https://github.com/mbabker/joomla-cms/compare/JHtml_move.patch

6条回答
  •  北海茫月
    2021-02-18 21:29

    I had the same problem You have a rebase in progress, write

    git rebase --skip 
    

    many times, until see No rebase in progress? then try again with git am

提交回复
热议问题