Tag: Commits
Browse all articles, tutorials, and guides about Commits
Posts
How to Change the Commit Author for a Single Commit in Git
Made a commit with the wrong author information? Learn how to change the author name and email for a single commit in your Git history.
How to List All Files in a Git Commit
Need to see which files were changed in a commit? Learn how to list all files modified, added, or deleted in any Git commit using log and show commands.
How to Modify a Specific Commit in Git
Need to change an old commit? Learn how to modify a specific commit in Git history using interactive rebase and amend commands.
What Does Cherry-Picking a Commit Mean in Git?
Need to apply a specific commit from one branch to another? Learn how to use git cherry-pick to selectively copy commits without merging entire branches.
How to Commit Only Part of a File in Git
Need to commit some changes in a file but not others? Learn how to stage and commit specific changes within a file using Git patch mode.