diff --git a/content/snippets/git/s/view-commits-by-author-or-committer.md b/content/snippets/git/s/view-commits-by-author-or-committer.md index 6e2d65f089a..f1cb55a3b67 100644 --- a/content/snippets/git/s/view-commits-by-author-or-committer.md +++ b/content/snippets/git/s/view-commits-by-author-or-committer.md @@ -6,7 +6,7 @@ language: git tags: [repository,commit] cover: comic-glasses excerpt: If you're looking for a way to find commits by a specific author or committer in a Git repository, look no further. -dateModified: 2021-04-25 +dateModified: 2024-04-25 --- When viewing the commit history of a Git repository, you might want to **filter** the commits by author or committer. As is often the case, Git has you covered. diff --git a/content/snippets/git/s/view-commits-by-string.md b/content/snippets/git/s/view-commits-by-string.md index f590b585443..8a496cb57a4 100644 --- a/content/snippets/git/s/view-commits-by-string.md +++ b/content/snippets/git/s/view-commits-by-string.md @@ -6,7 +6,7 @@ language: git tags: [commit] cover: bunny-poster excerpt: Learn how to view all commits that manipulated a specific string in a Git repository. -dateModified: 2023-04-26 +dateModified: 2024-04-26 --- Finding all commits that **manipulated a specific string** in a Git repository sounds like a pretty tricky task, if you don't know how to do it. Fortunately, Git provides a straightforward way to search for commits that manipulated a given string.