GitKraken Desktop Documentation

GitKraken Terminal Guide

Last updated: January 2026

Open the Terminal to run Git CLI commands while viewing the Commit Graph.

To get started, open a repository and click the Terminal button in the toolbar, or search for “terminal” using the Command Palette.

GitKraken Desktop interface showing the Terminal button in the top toolbar and an open terminal panel running the git status command.
Launch the terminal from the GitKraken toolbar

Git Commands and Auto-complete

The GitKraken Terminal supports most Git commands. Start typing git to see command suggestions via auto-complete.

Autocomplete dropdown in GitKraken Desktop terminal suggesting Git commands after typing 'git'. Suggestions include commit, config, rebase, add, and others.
Git commands appear in auto-complete suggestions

Flag suggestions are also supported:

Autocomplete dropdown in the GitKraken Desktop terminal showing flag suggestions for the 'git status' command. Flags include --verbose, --branch, --show-stash, and others.
Flag suggestions enhance Git command efficiency

Note: Conflicting auto-complete programs may disable suggestions. You may need to uninstall or disable such programs for GitKraken’s suggestions to work correctly.


Customize Terminal Preferences

Visit Preferences > In-app Terminal to modify your terminal settings.

GitKraken Desktop Preferences window with In-App Terminal settings selected. Options visible include font selection, font size, line height, cursor style, and autocomplete behavior.
Access terminal settings under Preferences

Default Terminal on macOS and Linux

GitKraken supports ZSH and Bash. To switch shells:

  1. Set the preferred shell as default in your OS settings.
  2. Restart your machine to apply changes.

Default Terminal on Windows

PowerShell and Bash are currently supported. To change the shell:

  1. Open Preferences > Terminal.
  2. Set the Default Terminal to your desired shell.

Tip: Try Common Git Commands

Use the terminal to quickly execute common Git operations:

  • git status – View working directory and staging status
  • git commit -m "message" – Commit changes with a message
  • git log --oneline – View a condensed commit history

These commands complement GitKraken’s visual graph for a comprehensive Git experience.

Have feedback about this article? Did we miss something? Let us know!
On this page