contrib: rename no-op-example to barebones-example

"no-op" might suggest that it doesn't do anything, when in reality it
does exactly what filter-repo does.  Rename it to barebones-example.

Signed-off-by: Elijah Newren <newren@gmail.com>
This commit is contained in:
Elijah Newren 2020-06-23 19:58:13 -07:00
parent 2f26e4bce5
commit debe52000d
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ that could be done.
Command&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |Description Command&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |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. 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 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. lint-history |Run some lint command on all non-binary files in history.

View File

@ -1,8 +1,8 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
""" """
This is a simple program that just behaves identically to git-filter-repo. This is a simple program that behaves identically to git-filter-repo. Its
Its entire purpose is just to show what to import and run to get the normal 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 git-filter-repo behavior, to serve as a starting point for you to figure
out what you want to modify. out what you want to modify.
""" """