diff --git a/contrib/filter-repo-demos/README.md b/contrib/filter-repo-demos/README.md index 510e81f..ef021b1 100644 --- a/contrib/filter-repo-demos/README.md +++ b/contrib/filter-repo-demos/README.md @@ -9,7 +9,7 @@ that could be done. Command                         |Description -------|----------- -no-op-example |Simple example with no modifications to filter-repo behavior, just showing what to import and run. +barebones-example |Simple example with no modifications to filter-repo behavior, just showing what to import and run. insert-beginning |Add a new file (e.g. LICENSE/COPYING) to the beginning of history. signed-off-by |Add a Signed-off-by tag to a range of commits lint-history |Run some lint command on all non-binary files in history. diff --git a/contrib/filter-repo-demos/no-op-example b/contrib/filter-repo-demos/barebones-example similarity index 81% rename from contrib/filter-repo-demos/no-op-example rename to contrib/filter-repo-demos/barebones-example index 359e67d..d7308b7 100755 --- a/contrib/filter-repo-demos/no-op-example +++ b/contrib/filter-repo-demos/barebones-example @@ -1,8 +1,8 @@ #!/usr/bin/env python3 """ -This is a simple program that just behaves identically to git-filter-repo. -Its entire purpose is just to show what to import and run to get the normal +This is a simple program that behaves identically to git-filter-repo. Its +entire purpose is just to show what to import and run to get the normal git-filter-repo behavior, to serve as a starting point for you to figure out what you want to modify. """