Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Documentation/examples-from-user-filed-issues.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ where the author email is currently `[email protected]`:

```
git filter-repo --refs main~5..main --commit-callback '
if commit.author_email = b"[email protected]":
if commit.author_email == b"[email protected]":
commit.author_name = "Raphaël González".encode()
commit.author_email = b"[email protected]"
'
Expand Down Expand Up @@ -528,4 +528,4 @@ replacing every blob
with. It is great.
```

which has no leading spaces on any lines.
which has no leading spaces on any lines.