Giter VIP home page Giter VIP logo

Comments (3)

newren avatar newren commented on July 4, 2024

I actually copied this piece of functionality, including the default, from BFG Repo Cleaner (https://rtyley.github.io/bfg-repo-cleaner/); --replace-text was one of their really awesome ideas. They used this default for years and years without changing it. Honestly, I came close to making the replacement be an empty string or just erroring out if no replacement was specified (I mean, when does some random replacement ever make any sense??), but deferred to their experience and made things more similar for those coming from that tool. If I were to make a change to the default, which I'm not sure if I want to do, it'd be to change it in one of those two ways.

But, having a --default-replacement flag of some sort to allow the user to switch the default without having to specify it on every line might make sense.

from git-filter-repo.

phanan avatar phanan commented on July 4, 2024

from git-filter-repo.

newren avatar newren commented on July 4, 2024

Actually, I went a slightly different route. I stored the default replacement text in a variable that an accessing script can modify. Also, I create a new contrib example named "no-op-example" (see commit bd2c9c4 (contrib: new simple no-op-example, 2020-06-06)) which provides identical behavior to filter-repo by doing the right import and calling the right high-level functions, so that people have a simple starting point for modification.

If you take the no-op-example and just add the line of code

fr.FilteringOptions.default_replace_text = b'NEW DEFAULT REPLACEMENT TEXT'

after the definition of fr and before the call to filter.run(), then you can run

no-op-example <filter-repo args>

and you'd get the same behavior as

git filter-repo <filter-repo args>

except that the default replacement text would be NEW DEFAULT REPLACEMENT TEXT instead of ***REMOVED***

from git-filter-repo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.