logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

git-cola - The highly caffeinated Git GUI

Apply Patches

       Use the File->ApplyPatches menu item to begin applying patches.

       Dragging and dropping patches onto the gitcola interface adds the patches to  the  list  of  patches  to
       apply using gitam.

       You  can  drag either a set of patches or a directory containing patches.  Patches can be sorted using in
       the interface and are applied in the same order as is listed in the list.

       When a directory is dropped gitcola walks the directory tree in search of patches.  gitcola  sorts  the
       list  of  patches  after they have all been found.  This allows you to control the order in which patches
       are applied by placing patch sets into alphanumerically-sorted directories.

Author

       David Aguilar and contributors

4.12.0                                            Feb 25, 2025                                       GIT-COLA(1)

Branches

       The Branches tool provides a visual tree to navigate branches.  The tree has three main  sections:  LocalBranches,  RemoteBranches and Tags.  Branches are grouped by their name divided by the character /.  For
       example, in a repo with the following list of branches:

          branch/feature/foo
          branch/feature/bar
          branch/doe

       The branches widget will display the following hierarchy:

          branch
              - doe
              + feature
                  - bar
                  - foo

       The current branch is decorated with a star icon.  If the current branch has commits ahead or behind  the
       remote then an up or down arrow will be displayed alongside a number showing the number of commits.

   Actions
       Various  actions  are  available  through  the right-click context menu.  Different actions are available
       depending on the selected branch's status.

   Checkout
       The checkout action runs gitcheckout[<branchname>].

   Mergeintocurrentbranch
       The merge action runs gitmerge--no-commit[<branchname>].

   Pull
       The pull action runs gitpull--no-ff[<remote>][<branchname>].

   Push
       The push action runs gitpush[<remote>][<branchname>].

   RenameBranch
       The rename branch action runs gitbranch-M[<branchname>].

   DeleteBranch
       The delete branch branch action runs gitbranch-D[<branchname>].

   DeleteRemoteBranch
       The remote branch action runs gitpush--delete[<remote>][<branchname>].

Commit Message Editor

       The commit message editor is a simple text widget for entering commit messages.

       You can navigate between the Subject and Extendeddescription...  fields using the keyboard arrow keys.

       Pressing enter when inside the Subject field jumps down to the extended description field.

       The Options button menu to the left of the subject field provides access to the additional actions.

       The Ctrl+i keyboard shortcut adds a standard "Signed-off-by: " line, and Ctrl+Enter creates a new  commit
       using the commit message and staged content.

   SignOff
       The SignOff button adds a sign-off to the bottom of the commit message:

          Signed-off-by: A. U. Thor <a.u.thor@example.com>

       Invoking this action is equivalent to passing the -s option to gitcommit.

       Signing-off  on  commits  is  a  common  practice  in  projects  that use DeveloperCertificateofOrigin
       attestations in their contribution process.

   Commit
       The commit button runs gitcommit.  The contents of the commit message editor is provided as  the  commit
       message.

       Only  staged  files  are included in the commit -- this is the same behavior as running gitcommit on the
       command-line.

   LineandColumnDisplay
       The current line and column number is displayed by the editor.  E.g. a 5,0 display means that the  cursor
       is located at line five, column zero.

       The  display  changes  colors  when  lines  get too long.  Yellow indicates the safe boundary for sending
       patches to a mailing list while keeping space for inline reply markers.

       Orange indicates that the line is starting to run a bit long and should break soon.

       Red indicates that the line is running up against the standard 80-column limit for commit messages.

       Keeping commit messages less than 76-characters wide is encouraged.  gitlog is a  great  tool  but  long
       lines mess up its formatting for everyone else, so please be mindful when writing commit messages.

   AmendLastCommit
       Clicking  on  AmendLastCommit makes gitcola amend the previous commit instead of creating a new one.
       gitcola loads the previous commit message into the commit message editor when this option is selected.

       The Status tool will display all of the changes for the amended commit.

   CreateSignedCommit
       Tell gitcommit and gitmerge to sign commits using GPG.

       Using this option is equivalent to passing the --gpg-sign option to gitcommit and gitmerge.

       This option's default value can be configured using the cola.signcommits configuration variable.

   PrepareCommitMessage
       The  Commit->PrepareCommitMessage  action  or  Ctrl-Shift-Return  keyboard  shortcut   runs   the
       cola-prepare-commit-msg  hook  if  it is available in .git/hooks/.  This is a gitcola-specific hook that
       takes the same parameters as Git's prepare-commit-msghook

       The hook is passed the path to .git/GIT_COLA_MSG as the first argument and the hook is expected to  write
       an  updated  commit  message  to specified path.  After running this action, the commit message editor is
       updated with the new commit message.

       To override the default path to this hook set the cola.prepareCommitMessageHookgitconfig  variable  to
       the  path  to  the  hook  script.   This  is  useful  if  you  would like to use a common hook across all
       repositories.

Configuration Variables

       These variables can be set using gitconfig or from the settings.

   cola.autodetectproxy
       Set  to  false to disable auto-configuration of HTTP proxy settings based on the configured Gnome and KDE
       Desktop Environment proxy  settings.   The  core  Git  http.proxy  configuration  overrides  this  value.
       Defaults to true.

   cola.autocompletepaths
       Set to false to disable auto-completion of filenames in completion widgets.  This can speed up operations
       when working in large repositories.  Defaults to true.

   cola.autoloadCommitTemplate
       Set to true to automatically load the commit template in the commit message editor If the commit.template
       variable has not been configured, raise the corresponding error.  Defaults to false.

   cola.blameviewer
       The command used to blame files.  Defaults to gitguiblame.

   cola.blockcursor
       Whether  to  use  a  "block" cursor in diff editors. The block cursor is easier to see compared to a line
       cursor. Set to false to use a thin "line" cursor.  Defaults to true.

   cola.browserdockable
       Whether to create a dock widget with the Browser tool.  Defaults to false to speedup startup time.

   cola.checkconflicts
       Inspect unmerged files for conflict markers before staging them.  This feature helps  prevent  accidental
       staging of unresolved merge conflicts.  Defaults to true.

   cola.defaultrepogitcola, when run outside of a Git repository, prompts the user for a repository.  Set cola.defaultrepo
       to the path of a Git repository to make gitcola attempt to use that repository before  falling  back  to
       prompting the user for a repository.

   cola.dictionary
       Specifies  an  additional dictionary for gitcola to use in its spell checker.  This should be configured
       to the path of a newline-separated list of words.

       By default, gitcola searches for dict/words and dict/propernames dictionary files in ~/.local/share  and
       $XDG_DATA_DIRS.

       If $XDG_DATA_DIRS is undefined or set to an empty value then /usr/local/share and /usr/share are searched
       for dictionary files.

       Dictionary files are newline-separated and contain one word per line.

   cola.expandtab
       Expand  tabs  into  spaces  in  the  commit  message  editor.   When  set to true, gitcola will insert a
       configurable number of spaces when tab is pressed.  The number of spaces is determined by  cola.tabwidth.
       Defaults to false.

   cola.gravatar
       Use  the  gravatar.com  service to lookup icons for author emails.  Gravatar icons work by sending an MD5
       hash of an author's email to gravatar.com when  requesting  an  icon.  Warning:  this  feature  can  leak
       information.  Network requests to gravatar.com are disabled when set to false.  Defaults to true.

   cola.fileattributes
       Enables  per-file  gitattributes  encoding  and  binary  file  support.  This tells gitcola to honor the
       configured encoding when displaying and applying diffs.

       A .gitattributes file can set the binary attribute in order to  force  specific  untracked  paths  to  be
       treated as binary files when diffing.  Binary files are displayed using a hex-dump display.

          # Treat *.exr files as binary files.
          *.exr binary

   cola.fontdiff
       Specifies the font to use for gitcola's diff display.

   cola.hidpi
       Specifies the High DPI displays scale factor. Set 0 to automatically scaled.  Setting value between 0 and
       1  is undefined.  This option requires at least Qt 5.6 to work.  See QtQT_SCALE_FACTORdocumentation for
       more information.

   cola.icontheme
       Specifies the icon themes to use throughout gitcola. The  theme  specified  must  be  the  name  of  the
       subdirectory  containing the icons, which in turn must be placed in the inside the main "icons" directory
       in gitcola's installation prefix.

       If unset, or set either "light" or "default", then the default style will be used.  If set to "dark" then
       the built-in "dark" icon theme, which is suitable for a dark window manager theme, will be used.

       If set to an absolute directory path then icons in that directory will be used.  This value can be set to
       multiple values using, gitconfig--addcola.icontheme$theme.

       This setting can be overridden  by  the  GIT_COLA_ICON_THEME  environment  variable,  which  can  specify
       multiple themes using a colon-separated value.

       The  icon  theme can also be specified by passing --icon-theme=<theme> on the command line, once for each
       icon theme, in the order that they should be searched.  This can be used to  override  a  subset  of  the
       icons, and fallback to the built-in icons for the remainder.

   cola.imagediff.[extension]
       Enable  image  diffs  for  the  specified  file  extension.  For example, configuring gitconfig--globalcola.imagediff.svgfalse will disable use of the visual image diff for .svg files in all repos  until  is
       is explicitly toggled on.  Defaults to true.

   cola.inotify
       Set  to false to disable file system change monitoring.  Defaults to true, but also requires either Linux
       with inotify support or Windows with pywin32 installed for file  system  change  monitoring  to  actually
       function.

   cola.refreshonfocus
       Set to true to automatically refresh when gitcola gains focus.  Defaults to false because this can cause
       a pause whenever switching to gitcola from another application.

   cola.linebreak
       Whether to automatically break long lines while editing commit messages.  Defaults to true.  This setting
       is  configured  using  the  Preferences  dialog, but it can be toggled for one-off usage using the commit
       message editor's options sub-menu.

   cola.logdate
       Set the default date-time mode for the DAG display. This value is passed to gitlog--date=<format>.  See
       gitlog(1) for more details.

   cola.maxrecentgitcola caps the number of recent repositories to avoid cluttering the  start  and  recent  repositories
       menu.  The maximum number of repositories to remember is controlled by cola.maxrecent and defaults to 8.

   cola.mousezoom
       Controls  whether  zooming  text  using  Ctrl  +  MouseWheel  scroll is enabled.  Set to false to disable
       scrolling with the mouse wheel.  Defaults to true.

   cola.notifyonpush
       Enable desktop notifications when commits are pushed using the "Push" dialog.   Set  to  true  to  enable
       desktop notifications.  Defaults to false.

   cola.dragencodinggitcola  encodes  paths dragged from its widgets into utf-16 when adding them to the drag-and-drop mime
       data (specifically, the text/x-moz-url entry).  utf-16 is used  to  make  gnome-terminal  see  the  right
       paths,  but  other terminals may expect a different encoding.  If you are using a terminal that expects a
       modern encoding, e.g. terminator, then set this value to utf-8.

   cola.readsizegitcola avoids reading large binary untracked  files.   The  maximum  size  to  read  is  controlled  by
       cola.readsize and defaults to 2048.

   cola.resizebrowsercolumnsgitcola  will  automatically  resize  the  file  browser columns as folders are expanded/collapsed when
       cola.resizebrowsercolumns is set to true.

   cola.patchesdirectory
       The default directory to use when exporting patches. Relative paths are treated as being relative to  the
       current repository. Absolute paths are used as-is.  Defaults to patches.

   cola.safemode
       The  "Stage"  button in the gitcola Actions panel stages all files when it is activated and no files are
       selected.  This can be problematic if it is accidentally triggered after carefully  preparing  the  index
       with  staged  changes.   "Safe Mode" is enabled by setting cola.safemode to true.  When enabled, gitcola
       will do nothing when "Stage" is activated without a selection.  Defaults to false.

   cola.savewindowsettingsgitcola will remember its window settings when set to true.  Window settings and X11 sessions are  saved
       in $HOME/.config/git-cola.

   cola.showpathgitcola  displays  the  absolute  path  of the repository in the window title.  This can be disabled by
       setting cola.showpath to false.  Defaults to true.

   cola.signcommitsgitcola will sign commits by default when set true. Defaults to false.  See the section below on setting
       up GPG for more details.

   cola.startupmode
       Control how the list of repositories is displayed in the startup dialog.  Set to list to view the list of
       repositories as a list, or folder to view the list of repositories  as  a  collection  of  folder  icons.
       Defaults to list.

   cola.statusindent
       Set to true to indent files in the Status widget.  Files in the Staged, Modified, etc. categories will be
       grouped in a tree-like structure.  Defaults to false.

   cola.statusshowtotals
       Set to true to display files counts in the Status widget's category titles.  Defaults to false.

   cola.sync
       Set  to  false  to  disable  calling os.fdatasync()  / os.fdata() when saving settings. Defaults to true,
       which means that these functions are called when windows are closed and their settings are saved.

   cola.tabwidth
       The number of columns occupied by a tab character.  Defaults to 8.

   cola.terminal
       The command to use when launching commands within a graphical terminal.

       cola.terminal defaults to xterm-e when unset.  e.g. when opening a shell, gitcola  will  run  xterm-e$SHELL.

       gitcola   has  built-in  support  for  xterm,  gnome-terminal,  konsole.   If  either  gnome-terminal,
       xfce4-terminal, or konsole are installed then they will be preferred over  xterm  when  cola.terminal  is
       unset.

       The  table  below shows the built-in values that are used for the respective terminal.  You can force the
       use of a specific terminal by configuring cola accordingly.

   cola.terminalshellquote
       Some terminal require that the command string get passed as a string.   For  example,  xfce4-terminal-e"gitdifftool" requires shell quoting, whereas gnome-terminal--gitdifftool does not.

       You  should  not  need to set this variable for the built-in terminals cola knows about -- it will behave
       correctly  without  configuration.   For  example,  when  not  configured,  cola   already   knows   that
       xfce4-terminal requires shell quoting.

       This  configuration  variable  is for custom terminals outside of the builtin set.  The table below shows
       the builtin configuration.

          Terminal            cola.terminal           cola.terminalshellquote
          --------            -------------           -----------------------
          gnome-terminal      "gnome-terminal --"     false
          konsole             "konsole -e"            false
          xfce4-terminal      "xfce4-terminal -e"     true
          xterm               "xterm -e"              false

   cola.textwidth
       The number of columns used for line wrapping.  Tabs are counted according to cola.tabwidth.

   cola.theme
       Specifies the GUI theme to use throughout gitcola. The theme specified must  be  one  of  the  following
       values:

       • default – default Qt theme, may appear different on various systems

       • flat-dark-blueflat-dark-greenflat-dark-greyflat-dark-redflat-light-blueflat-light-greenflat-light-greyflat-light-red

       If unset, or set to an invalid value, then the default style will be used. The default theme is generated
       by  Qt  internal  engine and should look native but may look noticeably different on different platforms.
       The flat themes on the other hand should look similar (but not identical) on various systems.

       The GUI theme can also be specified by passing --theme=<name> on the command line.

   cola.turbo
       Set to true to enable "turbo" mode.  "Turbo" mode disables some features that can slow things  down  when
       operating  on  huge  repositories.   "Turbo"  mode will skip loading Git commit messages, author details,
       status information, and commit date details in the FileBrowser tool.  Defaults to false.

   cola.color.text
       The default diff text color, in hexadecimal #RRGGBB notation.  Defaults to "#030303":

          git config cola.color.text '#030303'

   cola.color.add
       The default diff "add" background color, in hexadecimal #RRGGBB notation.  Defaults to "#d2ffe4":

          git config cola.color.add '#d2ffe4'

   cola.color.remove
       The default diff "remove" background color, in hexadecimal #RRGGBB notation.  Defaults to "#fee0e4":

          git config cola.color.remove '#fee0e4'

   cola.color.header
       The default diff header text color, in hexadecimal #RRGGBB notation.  Defaults to "#bbbbbb":

          git config cola.color.header '#bbbbbb'

   cola.updateindex
       Git's index is refreshed during application  startup.  You  can  disable  this  behavior  by  configuring
       cola.updateindex  to false. This is useful in some scenarios such as when accessing Git repositories over
       a Samba share. If you have this enabled then you can use the ctrl-r "Refresh" action to force  the  index
       to be refreshed instead.  Defaults to true.

   commit.cleanup
       Configure whether commit messages should be stripped of whitespace and comments.

       Valid values are strip, whitespace, verbatim, scissors or default.

       The  default  mode  uses  the  whitespace  mode  when committing through Git Cola and the strip mode when
       committing using the gitcommit command-line.

       • strip -  Strip  leading  and  trailing  empty  lines,  trailing  whitespace,  commentary  and  collapse
         consecutive empty lines.

       • whitespace  -  Same  as  strip  except  #commentary is not removed.  This is the default behavior when
         committing through GitCola.

       • verbatim - Do not change the message at all.

       • scissors - Same as whitespace except that everything from (and  including)  the  line  found  below  is
         truncated, if the message is to be edited.  "#" can be customized with core.commentChar:

            # ------------------------ >8 ------------------------
            Scissor-lines and all following lines are removed.

       Changing  the mode to whitespace can be useful when you always want to keep lines that begin with comment
       character # in your log message, even when committing using the command-line gitcommit.

       On the contrary, if you always want to always strip comments, even when committing through Git Cola, then
       configure commit.cleanup to strip.

       Please see the gitcommitcleanupmodedocumentation for more details.

   core.commentChar
       Commit messages can contain comments that start with this character.  Defaults to #.

       Please see the gitconfigdocumentation for more details.

   core.hooksPath
       Hooks are programs you can place in a hooks directory to trigger  actions  at  certain  points  in  git’s
       execution. Hooks that don’t have the executable bit set are ignored.

       By  default  the  hooks  directory  is  $GIT_DIR/hooks,  but  that  can be changed via the core.hooksPath
       configuration variable

       The cola-prepare-commit-msg hook functionality and Cola's Git LFS detection honors this configuration.

       Please see the githooksdocumentation for more details.

   gui.diffcontext
       The number of diff context lines to display.

   gui.displayuntrackedgitcola avoids showing untracked files when set to false.

   gui.editor
       The default text editor to use is defined in  gui.editor.   The  config  variable  overrides  the  VISUAL
       environment variable.  Defaults to gvim-f-p.

   gui.historybrowser
       The history browser to use when visualizing history.  Defaults to gitk.

   diff.tool
       The default diff tool to use.

   merge.tool
       The default merge tool to use.

   user.email
       Your   email  address  to  be  recorded  in  any  newly  created  commits.   Can  be  overridden  by  the
       'GIT_AUTHOR_EMAIL', 'GIT_COMMITTER_EMAIL', and 'EMAIL' environment variables.

   user.name
       Your full name to be recorded in any newly created commits.  Can be overridden by  the  'GIT_AUTHOR_NAME'
       and 'GIT_COMMITTER_NAME' environment variables.

Configure Your Editor

       The editor used by Ctrl-e is configured from the Preferences screen.

       The following environment variables are consulted when no editor is configured.  If defined, the first of
       these variables is used:

       • GIT_VISUALVISUALGIT_EDITOREDITOR

       The  *VISUAL  variables  are consulted before the *EDITOR variables so that you can configure a graphical
       editor independently of the editor used by the Git CLI.

       ProTip: Configuring your editor to gvim-f-p will open multiple tabs when editing files.   gvim-f-o
       uses splits.

       gitcola  is {vim, emacs, textpad, notepad++}-aware.  When you select a line in the diff or grep screens
       and press any of Enter, Ctrl-e, or the Edit button, you are taken to that exact line.

       The editor preference is saved in the gui.editor variable using gitconfig.

       The following are some recommend editor configurations.

       • Neovim + Neovim-Qt

          git config --global core.editor nvim
          git config --global gui.editor 'nvim-qt --nofork'

       • Vim + gvim

          git config --global core.editor vim
          git config --global gui.editor 'gvim -f'

       • Sublime Text

          git config --global gui.editor 'subl --wait'

Custom Gui Actions

gitcola  allows  you  to  define custom GUI actions by setting gitconfig variables.  The "name" of the
       command appears in the "Actions" menu.

   guitool.<name>.cmd
       Specifies the shell command line to execute when the corresponding item of the  Tools  menu  is  invoked.
       This  option is mandatory for every tool. The command is executed from the root of the working directory,
       and in the environment it receives the name of the  tool  as  GIT_GUITOOL,  the  name  of  the  currently
       selected  file  as  FILENAME,  and the name of the current branch as CUR_BRANCH (if the head is detached,
       CUR_BRANCH is empty).

       If <name> contains slashes (/) then the leading part of the name, up until the final  slash,  is  treated
       like a path of sub-menus under which the actions will be created.

       For  example,  configuring  guitool.Commands/Util/echo.cmd  creates  a Commands menu inside the top-level
       Actions menu, a Util menu inside the Commands menu and an echo action inside the Commands sub-menu.

   guitool.<name>.background
       Run the command in the background (similar to editing and difftool actions).  This  avoids  blocking  the
       GUI.  Setting background to true implies noconsole and norescan.

   guitool.<name>.needsfile
       Run the tool only if a diff is selected in the GUI. It guarantees that FILENAME is not empty.

   guitool.<name>.noconsole
       Run the command silently, without creating a window to display its output.

   guitool.<name>.norescan
       Don’t rescan the working directory for changes after the tool finishes execution.

   guitool.<name>.confirm
       Show a confirmation dialog before actually running the tool.

   guitool.<name>.argprompt
       Request  a  string argument from the user, and pass it to the tool through the ARGS environment variable.
       Since requesting an argument implies confirmation, the confirm option has no effect if this  is  enabled.
       If  the  option is set to true, yes, or 1, the dialog uses a built-in generic prompt; otherwise the exact
       value of the variable is used.

   guitool.<name>.revprompt
       Request a single valid revision from the user, and  set  the  REVISION  environment  variable.  In  other
       aspects this option is similar to argprompt, and can be used together with it.

   guitool.<name>.revunmerged
       Show  only  unmerged  branches  in the revprompt sub-dialog. This is useful for tools similar to merge or
       rebase, but not for things like checkout or reset.

   guitool.<name>.title
       Specifies the title to use for the prompt dialog.  Defaults to the tool name.

   guitool.<name>.prompt
       Specifies the general prompt string to display at the top of the dialog, before subsections for argprompt
       and revprompt.  The default value includes the actual command.

   guitool.<name>.shortcut
       Specifies a keyboard shortcut for the custom tool.

       The  value  must  be  a  valid  string   understood   by   the   QAction::setShortcut()   API.    See   ‐
       https://doc.qt.io/qt-6/qkeysequence.html#toString for more details about the supported values.

       Avoid  creating  shortcuts  that conflict with existing built-in gitcola shortcuts.  Creating a conflict
       will result in no action when the shortcut is used.

Custom Window Settings

gitcola remembers modifications to the layout and arrangement of tools within the  gitcola  interface.
       Changes are saved and restored at application shutdown/startup.

       gitcola can be configured to not save custom layouts by disabling the SaveWindowSettings option in the
       gitcola preferences.

Dark Mode And Window Manager Themes

       Git  Cola  contains  a  default  theme which follows the current Qt style and a handful of built-in color
       themes.  See cola.theme for more details.

       To use icons appropriate for a dark application theme, configure gitconfig--globalcola.iconthemedark
       to use the dark icon theme.  See cola.icontheme for more details.

       On macOS, using the default theme will automatically inherit "Dark Mode" color themes when configured via
       System  Preferences.   You  will  need  to configure the dark icon theme as noted above when dark mode is
       enabled.

       On Linux, you may want Qt to follow the Window manager theme by configuring it to do so using  the  qt5ct
       Qt5 configuration tool.  Install qt5ct on Debian/Ubuntu systems to make this work.:

          sudo apt install qt5ct

       Once installed, update your ~/.bash_profile to activate qt5ct:

          # Use the style configured using the qt5ct tool
          export QT_QPA_PLATFORMTHEME=qt5ct

       This  only  work  with the default theme.  The other themes replace the color palette with theme-specific
       colors.

       Some systems may require that you override QT_STYLE_OVERRIDE in order to use a dark theme  or  to  better
       interact with the Desktop environment.  Some systems provide a theme that you can install:

          sudo apt-get install adwaita-qt

       You can activate the theme using the following environment variable:

          # Override the default theme to adwaita-dark
          export QT_STYLE_OVERRIDE=adwaita-dark

       QT_STYLE_OVERRIDE may already be set in your Desktop Environment, so check that variable for reference if
       you  get unexpected hangs when launching git-cola or when the default theme does not follow the desktop's
       theme on Linux.

       If you don't want to set this variable globally then  you  can  set  it  when  launching  cola  from  the
       command-line:

          QT_STYLE_OVERRIDE=adwaita-dark git cola

       The following is a user-contributed custom git-cola.desktop file that can be used to launch Git Cola with
       these settings preset for you:

          [Desktop Entry]
          Name=Git Cola (dark)
          Comment=The highly caffeinated Git GUI
          TryExec=git-cola
          Exec=env QT_STYLE_OVERRIDE=adwaita-dark git-cola --prompt --icon-theme dark
          Icon=git-cola
          StartupNotify=true
          Terminal=false
          Type=Application
          Categories=Development;RevisionControl;
          X-KDE-SubstituteUID=false

       You may also want to customize the diff colors when using a dark theme:

          git config --global cola.color.add 86c19f
          git config --global cola.color.remove c07067

       Please see #760 for more details.

   CustomThemes
       To  create your own custom theme for Git Cola just create a QSS file and put it in ~/.config/themes/. You
       can add as many files as you want. Each file will become an option in Menu->File->Preferences->Appearance->GUItheme.

       Some examples can be found here QtStyleSheetsExamples.

Description

       Git Cola is a sleek and powerful Git GUI.

Diff

       The  diff viewer/editor displays diffs for selected files.  Additions are shown in green and removals are
       displayed in light red.  Extraneous whitespace is shown with a pure-red background.

       Right-clicking in the diff provides access to additional actions that use either the cursor  location  or
       text selection.

       The  "Copy Diff" action at Alt+Shift+C copies the selected lines to the clipboard. The +, - and `` ``
       diff line prefixes are stripped from each line when copying diffs using the "Copy Diff" action.

   Stagingcontentforcommit
       The @@ patterns denote a new diff hunk.  Selecting lines of diff  and  using  the  StageSelectedLines
       command  will  stage  just the selected lines.  Clicking within a diff hunk and selecting StageDiffHunk
       stages the entire patch diff hunk.

       The corresponding opposite commands can be performed on staged files as well, e.g. staged content can  be
       selectively removed from the index when we are viewing diffs for staged content.

   DiffAgainstCommit(DiffMode)DiffMode allows you to selectively unstage and revert edits from arbitrary commits so that you can bring
       these edits back into your worktree.

       You  can  use  the  diff  editor  to  unstage edits against arbitrary commits by using the Diff>AgainstCommit...(DiffMode) menu action.

       You can exit DiffMode by clicking on the red circle-slash icon on the Status widget, by using the Diff>ExitDiffmode menu action, or by clicking in an empty area in the Status tool.

Environment Variables

GIT_COLA_ICON_THEME
       When  set  in  the  environment,  GIT_COLA_ICON_THEME overrides the theme specified in the cola.icontheme
       configuration.  Read cola.icontheme for more details.

   GIT_COLA_SCALEIMPORTANT:GIT_COLA_SCALE should not be used with newer versions of Qt.

          Set QT_AUTO_SCREEN_SCALE_FACTOR to 1 and Qt will automatically scale the interface to the correct size
          based on the display DPI.  This option is also available by setting cola.hidpi configuration.

          See the QtHighDPIdocumentation for more details.

       gitcola can be made to scale its interface for HiDPI displays.  When defined, gitcola will scale icons,
       radio buttons, and checkboxes according to the scale factor.  The default value is 1.  A good value is  2
       for high-resolution displays.

       Fonts are not scaled, as their size can already be set in the settings.

   GIT_COLA_TRACE
       When defined, gitcola logs git commands to stdout.  When set to full, gitcola also logs the exit status
       and output.  When set to trace, gitcola logs to the Console widget.

   VISUAL
       Specifies  the  default  editor  to  use.   This is ignored when the gui.editor configuration variable is
       defined.

Fips Security Mode

FIPSSecurityMode is available in newer versions of Python. These include Python 3.9+  and  the  patched
       Python 3.6 used by CentOS8/RHEL8 (and possibly others).

       Git  Cola  uses  the  hashlib.md5 function and adheres to the FIPS security mode when available. Git Cola
       does not use the MD5 value for security purposes.  MD5 is used only for the purposes of implementing  the
       cola/gravatar.py Gravatar client.

Keyboard Shortcuts

gitcola has many useful keyboard shortcuts.

       Many of gitcola's editors understand vim-style hotkeys, e.g.  {h,j,k,l}  for  navigating  in  the  diff,
       status, grep, and file browser widgets.

       {d,u}  move  down/up  one  half  page at a time (similar to vim's ctrl-{d,u}).  The space and shift-space
       hotkeys are mapped to the same operations.

       Shift-{j,k,d,u,f,b,page-up,page-down,left,right,up,down} can be be used in  the  diff  editor  to  select
       lines while navigating.

       s  is  a  useful hotkey in the diff editor.  It stages/unstages the current selection when a selection is
       present.  When nothing is selected, the diff hunk at the current text cursor position  is  staged.   This
       makes  it very easy to review changes by selecting good hunks with s while navigating down and over hunks
       that are not going to be staged.

       Ctrl-u in the diff editor reverts unstaged edits,  and  respects  the  selection.   This  is  useful  for
       selectively  reverted  edits  from the worktree.  This same hotkey reverts the entire file when used from
       the status tool.

       Ctrl-s in the diff editor and status tools stages/unstages the entire file.

       You can see the available shortcuts by pressing pressing the ? key, choosing Help->Keyboardshortcuts
       from the main menu, or by consulting the gitcolakeyboardshortcutsreference.

Language Settings

gitcola automatically detects your language and presents some translations when available.  This may not
       be desired, or you may want gitcola to use a specific language.

       You can make gitcola  use  an  alternative  language  by  creating  a  ~/.config/git-cola/language  file
       containing the standard two-letter gettext language code, e.g. "en", "de", "ja", "zh", etc.:

          mkdir -p ~/.config/git-cola &&
          echo en >~/.config/git-cola/language

       Alternatively  you may also use LANGUAGE environmental variable to temporarily change gitcola's language
       just like any other gettext-based program.  For example to temporarily  change  gitcola's  language  to
       English:

          LANGUAGE=en git cola

       To make gitcola use the zh_TW translation with zh_HK, zh, and en as a fallback.:

          LANGUAGE=zh_TW:zh_HK:zh:en git cola

Name

       git-cola - The highly caffeinated Git GUI

Options

--amend
       Start gitcola in amend mode.

   --prompt
       Prompt for a Git repository.  Defaults to the current directory.

   -r,--repo<path>
       Open the Git repository at <path>.  Defaults to the current directory.

   -s,--status-filter<filter>
       Apply the path filter to the status widget.

   --version
       Print the gitcola version and exit.

   -h,--help
       Show usage and optional arguments.

   --help-commands
       Show available sub-commands.

Setting Up Credential Helpers

       Git has robust support for automatically handling credentials.

       The recommended approach is to use SSH keys and an SSH agent, but any of the core Git Credentials helpers
       will get used automatically by Git Cola.

       See https://git-scm.com/doc/credential-helpers for more details.

Setting Up Gpg For Signed Commits

       When creating signed commits, gpg will attempt to read your password from the  terminal  from  which  gitcola  was  launched.   The  way  to  make  this work smoothly is to use a GPG agent so that you can avoid
       needing to re-enter your password every time you commit.

       This also gets you a graphical passphrase prompt instead of getting prompted for  your  password  in  the
       terminal.

   Installgpg-agentandfriends
       On Mac OS X, you may need to brewinstallgpg-agent and install the MacGPGSuite.

       On Linux use your package manager to install gnupg2, gnupg-agent and pinentry-qt, e.g.:

          sudo apt-get install gnupg2 gnupg-agent pinentry-qt

       On  Linux,  you  should  also  configure Git so that it uses gpg2 (gnupg2), otherwise you will get errors
       mentioning, "unable to open /dev/tty".  Set Git's gpg.program to gpg2:

          git config --global gpg.program gpg2

   Configuregpg-agentandapin-entryprogram
       On Mac OS X, edit ~/.gnupg/gpg.conf to include the line,:

          use-agent

       This is typically not needed on Linux, where gpg2 is used, as this is the default value when using gpg2.

       Next, edit ~/.gnupg/gpg-agent.conf to contain a pinentry-program line pointing to  the  pinentry  program
       for your platform.

       The following example ~/.gnupg/gpg-agent.conf shows how to use pinentry-gtk-2 on Linux:

          pinentry-program /usr/bin/pinentry-gtk-2
          default-cache-ttl 3600

       This following example .gnupg/gpg-agent.conf shows how to use MacGPG2's pinentry app on On Mac OS X:

          pinentry-program /usr/local/MacGPG2/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac
          default-cache-ttl 3600
          enable-ssh-support
          use-standard-socket

       Once this has been set up then you will need to reload your gpg-agent config:

          echo RELOADAGENT | gpg-connect-agent

       If you see the following output:

          OK

       Then the daemon is already running, and you do not need to start it yourself.

       If it is not running, eval the output of gpg-agent--daemon in your shell prior to launching gitcola.:

          eval $(gpg-agent --daemon)
          git cola

Shell Completions

       Git  Cola  provides  shell  completions  for  zsh  and bash.  The completion scripts and instructions are
       included in Git Cola's contrib directory.

       • ShellcompletionscriptsSetupinstructions

Status

       The Status tool provides a visual analog to the gitstatus command.

       Status  displays  files  that  are  modified  relative  to  the staging area, staged for the next commit,
       unmerged files from an in-progress merge, and files that are untracked to git.

       These are the same categories one sees when running gitstatus on the command line.

       You can navigate through the list of files using keyboard arrows as well as the ergonomic and vim-like  j
       and k shortcut keys.

       There are several convenient ways to interact with files in the Status tool.

       Selecting  a  file  displays its diff in the Diff viewer.  Double-clicking a file stages its contents, as
       does the Ctrl-s shortcut key.

       Ctrl-e opens selected files in the configured editor, and Ctrl-d opens selected files using gitdifftool

       Additional actions can be performed using the right-click context menu.

   DragandDrop
       Files can be dragged from the Status tool onto other applications.

       Some terminals will treat a drag with multiple files by separating them  with  newlines,  which  is  less
       amenable for pasting command-line arguments.

       To  avoid  this  issue,  hold  down  Alt/Option when dragging from the Status tool.  The drag and drop
       payload will no longer contain local file URLs -- it will contain plain text that is amenable for use  on
       a command-line.

       Note:  if  drag  and  drop  is  not  working  and  you  are  on  Wayland  then  you  may  need  to exportQT_QPA_PLATFORM=wayland in your environment.

   Actions
       Clicking the Staged folder shows a diffstat for the index.

       Clicking the Modified folder shows a diffstat for the worktree.

       Clicking individual files sends diffs to the DiffDisplay.

       Double-clicking individual files adds and removes their content from the index.

       Various actions are available through the right-click context  menu.   Different  actions  are  available
       depending a file's status.

   StageSelected
       Add to the staging area using gitadd Marks unmerged files as resolved.

   LaunchEditor
       Launches the configured visual text editor

   LaunchDifftool
       Visualize changes using gitdifftool.

   RevertUnstagedEdits
       Reverts unstaged content by checking out selected paths from the index/staging area

   RevertUncommittedEdits
       Throws away uncommitted edits

   UnstageSelected
       Remove from the index/staging area with gitresetLaunchMergeTool
       Resolve conflicts using gitmergetool.

   DeleteFile(s)
       Delete untracked files from the filesystem.

   Addto.gitignore
       Adds untracked files to to the .gitignore file.

Sub-Commands

am
       Apply patches.

   archive
       Export tarballs from Git.

   branch
       Create branches.

   browse
       Browse tracked files.

   config
       Configure settings.

   dag
       Start the gitdag Git history browser.

   diff
       Diff changed files.

   fetch
       Fetch history from remote repositories.

   grep
       Use gitgrep to search for content.

   merge
       Merge branches.

   pull
       Fetch and merge remote branches.

   push
       Push branches to remotes.

   rebase
       Start an interactive rebase.

   remote
       Create and edit remotes.

   search
       Search for commits.

   stash
       Stash uncommitted modifications.

   tag
       Create tags.

   version
       Print the gitcola version.

Synopsis

gitcola[options][sub-command]

Tools

       The  gitcola interface is composed of various cooperating tools.  Double-clicking a tool opens it in its
       own subwindow.  Dragging it around moves and places it within the main window.

       Tools can be hidden and rearranged however you like.  gitcola carefully remembers your window layout and
       restores it the next time it is launched.

       The Control-{1,2,3,...} hotkey gives focus to a specific tool.  A hidden tool can be  re-opened  using
       the Tools menu or the Shift+Control-{1,2,3,...} shortcut keys.

       The Diff editor can be focused with Ctrl-j.  The Status tool can be focused with Ctrl-k.  The Commit tool
       can be focused with Ctrl-l.

Windows Notes

GitInstallation
       If Git is installed in a custom location, e.g. not installed in C:/Git or Program Files, then the path to
       Git must be configured by creating a file  in  your  home  directory  ~/.config/git-cola/git-bindir  that
       points to your git installation, e.g.:

          C:/Tools/Git/bin

   SSHAgentsforKey-basedAuthentication
       You  may  need  to  setup  ssh-agent in order to use SSH key-based authentication on Windows. It has been
       reported that starting OpenSSH agent in  Windows  Services  and  adding  the  key  using  Powershell  are
       necessary in order to get things working.

       Please see the following links for more details.

       https://stackoverflow.com/questions/18683092/how-to-run-ssh-add-on-windowsSamba
       Core  Git  has  issues when operating over a Samba file share. This can lead to .git/index.lock lingering
       around and preventing git commands from working correctly.

       To avoid these issues, operate on repositories from a local filesystem.

See Also