DEV Community

Isaac Adams
Isaac Adams

Posted on

58 3

git: BFG installation

BFG Repo Cleaner is both faster and easier to use than using git filter-branch. It handles simple use cases for editing sensitive information in git.

Invoking BFG

BFG is a .jar file that is invoked from the command line using java.

$ java -jar path/to/bfg.jar

Invoking BFG this way can become tedious...

Easier way to reference BFG?

To simplify it, consider creating an alias

.bashrc

...
alias bfg='java -jar path/to/bfg.jar'
Enter fullscreen mode Exit fullscreen mode

BFG is now invokable from the command line in any directory:

$ bfg ...

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay