如何从git仓库合并后删除.orig文件?

一些.orig文件在合并期间在我的git存储库中被检查,现在显示在修改和未被跟踪的扇区中。 但我不希望这个文件在我的仓库中。 怎么做。

    modified:   Gemfile.lock.orig
    #   modified:   Gemfile.orig
    #   modified:   app/assets/images/bg_required.png.orig
    #   modified:   app/assets/javascripts/application.js.orig

    etc...

任何帮助将不胜感激。


在这种情况下,最好的解决方案是保持简单,并独立于git摆脱这些文件:

cd /your/repo/directory
find . -name '*.orig' -delete 

尝试git clean更多信息,你可以在这里或这里找到


你可以做:

git config --global mergetool.keepBackup false

有关更多信息,请参阅Git mergetool生成不需要的.orig文件

链接地址: http://www.djcxy.com/p/3283.html

上一篇: How to delete .orig files after merge from git repository?

下一篇: git command to move a folder inside another