Skip to content

Instantly share code, notes, and snippets.

@axzilla
axzilla / git_tags_cheat_sheet.md
Last active March 24, 2025 11:52
Git Tags Cheat Sheet

Git Tag Cheat Sheet

List Tags

List all the tags in the repository:

git tag
@axzilla
axzilla / commitify.md
Last active April 26, 2024 07:41
Git Identity Rewriter

Description

This Gist contains scripts to update Git author and committer information in the repository history.

# Rewrite All Commits
git filter-branch -f --env-filter '
    GIT_AUTHOR_NAME="name"
    GIT_AUTHOR_EMAIL="[email protected]"
    GIT_COMMITTER_NAME="name"
 GIT_COMMITTER_EMAIL="[email protected]"