Search
Close this search box.

Learn Git: Commit

The term commit is fundamental to how Git functions as a version control system. It is important to first understand what a commit is before learning how to perform the Git commit command and how to perform other actions related to commits in Git.

What is a Git commit?

In Git, a commit is a snapshot of your repo at a specific point in time.

To help further understand what a Git commit is, we need to review your Working Directory vs your Staging Directory and how files changes are reflected in your Git repository.

Think of your working directory as your “in progress” working area; here, created or modified files are not yet reflected in your Git repo. Changes made to files in your working directory only exist locally on your machine.

Git Stage Files

In order to apply changes from your working directory to your Git repository, you must first stage them in your staging directory.

From here, your changes can be saved in your repo by performing a Git commit.

Now, each Git commit will represent a snapshot of your repo at that point in time, and all of your commits will come together to form your repository’s history.

Git Workflow

Traditionally, a Git workflow will involve the following steps:

  1. Make changes in your working directory
  2. Stage changes in your staging directory
  3. Commit changes to apply them to your Git repository

OK, now that we’ve answered the question of what is a Git commit, let’s dive into how to Git commit using the cross-platform GitKraken Git GUI, and the associated actions you can perform with Git commit commands in the CLI.

How many times do you commit each day in Git? GitKraken will speed up the process by 2.5x 🤯. Don’t believe us? Try it for yourself. ⬇️

How to Git Commit in GitKraken

Let’s review the many actions you can easily perform with your commits with GitKraken, including how to add, amend, delete, and more.

In GitKraken, when you modify, add, delete, or rename any files in your repository, your Work-In-Progress, or WIP, will display at the top of the graph.

When you click the WIP node in GitKraken, all affected files will be listed in the Commit Panel on the right side. Additionally, GitKraken will display a color-coded icon next to each file to denote the change type: addedmodifiedrenamed, or deleted.

Work in progress for Git Commit in GitKraken

This is really helpful because it provides you immediate context to the files in your repository; no need to run a command!

Staging Files in GitKraken

To stage a file in GitKraken, simply hover over the file name in the right Commit Panel and hit Stage File.

Staging a file in GitKraken

A benefit offered in GitKraken that is absent from the command line is the ability to only stage individual lines or hunks of a file. You can accomplish this by viewing the file’s diff.

Viewing the File Diff in GitKraken

To view the file’s diff in GitKraken, simply click a file from the right Commit Panel. From here, you can elect to stage or discard individual lines or hunks of code.

Discarding Changes in GitKraken

You can discard all changes made to a file in GitKraken by right-clicking the file on the Commit Panel and selecting Discard changes.

Discarding changes in GitKraken

Furthermore, you can discard ALL changes made to all files in your WIP by clicking the trash icon 🗑 at the top left of the Commit Panel.

Discarding all changes in GitKraken

What if you discard something by mistake in GitKraken?

One of the best parts about using a tool like GitKraken to manage your projects is the ability to quickly undo, or revert, an action made by mistake. GitKraken makes it downright magical in just one click.

If you discard a change or file by mistake, simply click the Undo button in the top toolbar to revert the discard.

Undo button in GitKraken in action

Adding a Git Commit Message in GitKraken

When you’re ready to commit your staged changes in GitKraken, be sure to type a commit summary and description in the commit message field before clicking the button to commit. You can also use keyboard shortcut Cmd/Ctrl + Enter.

After you have committed your changes, your WIP node will be transformed into a commit . From here, you can click on your commit to review the changes from this specific point in time.

Revert a Git Commit with GitKraken

Similar to how you can revert a discard you made by mistake, GitKraken makes it quick and easy to undo a Git commit using the magical Undo button.

Undo git commit in GitKraken

GitTip: Learn more about how to revert a Git commit, including other options for discarding or amending your history.

Amend a Git Commit in GitKraken

Let’s say you’ve made an error in a Git commit messages and need to make a correction. You can amend a commit message for the most recent commit in GitKraken by selecting the commit from the central graph. From here, click on the commit message to start editing the text, then click Update Message to save your changes.

This can be a lifesaver if you realize you’ve made a mistake on your last commit.

Commit 2.5x faster 🏎💨 using GitKraken compared to the command line. Seriously. Test it for yourself. ⬇️

Git Status

If you’re not using the powerful GitKraken Git client to visualize your repo history, you can always run the git status command in the CLI to check which files have been staged and exist in your staging directory.

In this example, after the git status command has been performed, you can see that the trial-activation.md file has been modified, in addition to the other two.

How to Git Commit in the Command Line

In order to commit these changes in the CLI, you will need to stage the changes with the git add command, followed by the name of the file.

git add trial-activation.md
Git Add

This will stage the trial-activation.md file. Ah, but you’re not done yet! You still need to save the changes to your repository by performing the git commit command.

How do I add a Git commit message?

To add a Git commit message to your commit, you will use the git commit command followed by the -m flag and then your message in quotes. Adding a Git commit message should look something like this:

git commit -m “Add an anchor for the trial end sectionnn.”

How do I amend a Git commit?

Now, if you can see from the example above, there is a typo in the last word. So, how do you make a Git commit message change?

To amend a Git commit, you’re going to use the git commit command followed by --amend and then the amended Git commit message. It should look something like this:

git commit --amend “Add an anchor for the trial end section.”

Can I add multiple modified files using the Git commit command?

If you have numerous modified files sitting in your working directory, it can be time-consuming to add them one at a time. Speed up the process by using the git commit command followed by the -a flag. This will add all of the modified or deleted files in your working directory to the current commit. It should look something like this:

git commit -a -m “Update trial-activate page with changes from release."

Ready for an easier way to commit your code changes in Git?

The GitKraken Git GUI will give you more confidence staging, saving, and committing your file changes in Git with its simple user interface and clear organizational structure.

Additional Resources

Table of Contents

Visual Studio Code is required to install GitLens.

Don’t have Visual Studio Code? Get it now.