doc: document QT_STYLE_OVERRIDE and dark theme tips
[git-cola.git] / share / doc / git-cola / git-cola.rst
blob634a9c67b0cdb0bc141e928765531c944e83d754
1 ===========
2 git-cola(1)
3 ===========
5 SYNOPSIS
6 ========
7 git cola [options] [sub-command]
9 DESCRIPTION
10 ===========
11 Git Cola is a sleek and powerful Git GUI.
13 OPTIONS
14 =======
16 --amend
17 -------
18 Start `git cola` in amend mode.
20 --prompt
21 --------
22 Prompt for a Git repository.  Defaults to the current directory.
24 -r, --repo <path>
25 -----------------
26 Open the Git repository at `<path>`.  Defaults to the current directory.
28 -s, --status-filter <filter>
29 ----------------------------
30 Apply the path filter to the status widget.
32 --version
33 ---------
34 Print the `git cola` version and exit.
36 -h, --help
37 ----------
38 Show usage and optional arguments.
40 --help-commands
41 ---------------
42 Show available sub-commands.
44 SUB-COMMANDS
45 ============
49 Apply patches.
51 archive
52 -------
53 Export tarballs from Git.
55 branch
56 ------
57 Create branches.
59 browse
60 ------
61 Browse tracked files.
63 config
64 ------
65 Configure settings.
67 dag
68 ---
69 Start the `git dag` Git history browser.
71 diff
72 ----
73 Diff changed files.
75 fetch
76 -----
77 Fetch history from remote repositories.
79 grep
80 ----
81 Use `git grep` to search for content.
83 merge
84 -----
85 Merge branches.
87 pull
88 ----
89 Fetch and merge remote branches.
91 push
92 ----
93 Push branches to remotes.
95 rebase
96 ------
97 Start an interactive rebase.
99 remote
100 ------
101 Create and edit remotes.
103 search
104 ------
105 Search for commits.
107 stash
108 -----
109 Stash uncommitted modifications.
113 Create tags.
115 version
116 -------
117 Print the `git cola` version.
119 CONFIGURE YOUR EDITOR
120 =====================
121 The editor used by `Ctrl-e` is configured from the Preferences screen.
122 The environment variable `$VISUAL` is consulted when no editor has been
123 configured.
125 *ProTip*: Configuring your editor to `gvim -f -p` will open multiple tabs
126 when editing files.  `gvim -f -o` uses splits.
128 `git cola` is {vim, emacs, textpad, notepad++}-aware.
129 When you select a line in the diff or grep screens and press any of
130 `Enter`, `Ctrl-e`, or the `Edit` button, you are taken to that exact line.
132 The editor preference is saved in the `gui.editor` variable using
133 `git config <http://git-scm.com/docs/git-config>`_.
135 KEYBOARD SHORTCUTS
136 ==================
137 `git cola` has many useful keyboard shortcuts.
139 Many of `git cola`'s editors understand vim-style hotkeys, eg. `{h,j,k,l}`
140 for navigating in the diff, status, grep, and file browser widgets.
142 `{d,u}` move down/up one half page at a time (similar to vim's `ctrl-{d,u}`).
143 The `space` and `shift-space` hotkeys are mapped to the same operations.
145 `Shift-{j,k,d,u,f,b,page-up,page-down,left,right,up,down}` can be be used in
146 the diff editor to select lines while navigating.
148 `s` is a useful hotkey in the diff editor.  It stages/unstages the current
149 selection when a selection is present.  When nothing is selected, the
150 diff hunk at the current text cursor position is staged.  This makes it very
151 easy to review changes by selecting good hunks with `s` while navigating down
152 and over hunks that are not going to be staged.
154 `Ctrl-u` in the diff editor reverts unstaged edits, and respects the
155 selection.  This is useful for selectively reverted edits from the worktree.
156 This same hotkey reverts the entire file when used from the status tool.
158 `Ctrl-s` in the diff editor and status tools stages/unstages the entire file.
160 You can see the available shortcuts by pressing pressing the ``?`` key,
161 choosing ``Help -> Keyboard shortcuts`` from the main menu,
162 or by consulting the `git cola keyboard shortcuts reference <https://git-cola.github.io/share/doc/git-cola/hotkeys.html>`_.
164 TOOLS
165 =====
166 The `git cola` interface is composed of various cooperating tools.
167 Double-clicking a tool opens it in its own subwindow.
168 Dragging it around moves and places it within the main window.
170 Tools can be hidden and rearranged however you like.
171 `git cola` carefully remembers your window layout and restores
172 it the next time it is launched.
174 The `Control-{1, 2, 3, ...}` hotkey gives focus to a specific tool.
175 A hidden tool can be re-opened using the `Tools` menu or
176 the `Shift+Control-{1, 2, 3, ...}` shortcut keys.
178 The Diff editor can be focused with `Ctrl-j`.
179 the Status tool can be focused with `Ctrl-k`.
180 the Commit tool can be focused with `Ctrl-l`.
182 .. _status:
184 STATUS
185 ======
186 The `Status` tool provides a visual analog to the
187 `git status <http://git-scm.com/docs/git-status>`_ command.
189 `Status` displays files that are `modified` relative to the staging area,
190 `staged` for the next commit, `unmerged` files from an in-progress merge,
191 and files that are `untracked` to git.
193 These are the same categories one sees when running
194 `git status <http://git-scm.com/docs/git-status>`_
195 on the command line.
197 You can navigate through the list of files using keyboard arrows as well
198 as the ergonomical and vim-like `j` and `k` shortcut keys.
200 There are several convenient ways to interact with files in the `Status` tool.
202 Selecting a file displays its diff in the :ref:`Diff` viewer.
203 Double-clicking a file stages its contents, as does the
204 the `Ctrl-s` shortcut key.
206 `Ctrl-e` opens selected files in the conifgured editor, and
207 `Ctrl-d` opens selected files using `git difftool <http://git-scm.com/docs/git-difftool>`_
209 Additional actions can be performed using the right-click context menu.
211 Actions
212 -------
213 Clicking the `Staged` folder shows a diffstat for the index.
215 Clicking the `Modified` folder shows a diffstat for the worktree.
217 Clicking individual files sends diffs to the `Diff Display`.
219 Double-clicking individual files adds and removes their content from the index.
221 Various actions are available through the right-click context menu.
222 Different actions are available depending a file's status.
224 Stage Selected
225 ~~~~~~~~~~~~~~
226 Add to the staging area using `git add <http://git-scm.com/docs/git-add>`_
227 Marks unmerged files as resolved.
229 Launch Editor
230 ~~~~~~~~~~~~~
231 Launches the configured visual text editor
233 Launch Difftool
234 ~~~~~~~~~~~~~~~
235 Visualize changes using `git difftool`.
237 Revert Unstaged Edits
238 ~~~~~~~~~~~~~~~~~~~~~
239 Reverts unstaged content by checking out selected paths
240 from the index/staging area
242 Revert Uncommitted Edits
243 ~~~~~~~~~~~~~~~~~~~~~~~~
244 Throws away uncommitted edits
246 Unstage Selected
247 ~~~~~~~~~~~~~~~~
248 Remove from the index/staging area with
249 `git reset <http://git-scm.com/docs/git-reset>`_
251 Launch Merge Tool
252 ~~~~~~~~~~~~~~~~~
253 Resolve conflicts using `git mergetool <http://git-scm.com/docs/git-mergetool>`_.
255 Delete File(s)
256 ~~~~~~~~~~~~~~
257 Delete untracked files from the filesystem.
259 Add to .gitignore
260 ~~~~~~~~~~~~~~~~~
261 Adds untracked files to to the .gitignore file.
263 .. _diff:
265 DIFF
266 ====
267 The diff viewer/editor displays diffs for selected files.
268 Additions are shown in green and removals are displayed in light red.
269 Extraneous whitespace is shown with a pure-red background.
271 Right-clicking in the diff provides access to additional actions
272 that use either the cursor location or text selection.
274 Staging content for commit
275 --------------------------
276 The ``@@`` patterns denote a new diff hunk.  Selecting lines of diff
277 and using the `Stage Selected Lines` command will stage just the selected
278 lines.  Clicking within a diff hunk and selecting `Stage Diff Hunk` stages the
279 entire patch diff hunk.
281 The corresponding opposite commands can be performed on staged files as well,
282 e.g. staged content can be selectively removed from the index when we are
283 viewing diffs for staged content.
285 COMMIT MESSAGE EDITOR
286 =====================
288 The commit message editor is a simple text widget
289 for entering commit messages.
291 You can navigate between the `Subject` and `Extended description...`
292 fields using the keyboard arrow keys.
294 Pressing enter when inside the `Subject` field jumps down to the
295 extended description field.
297 The `Options` button menu to the left of the subject field
298 provides access to the additional actions.
300 The `Ctrl+i` keyboard shortcut adds a standard "Signed-off-by: " line,
301 and `Ctrl+Enter` creates a new commit using the commit message and
302 staged content.
304 Sign Off
305 --------
306 The `Sign Off` button adds a standard::
308     Signed-off-by: A. U. Thor <a.u.thor@example.com>
310 line to the bottom of the commit message.
312 Invoking this action is equivalent to passing the ``-s`` option
313 to `git commit <http://git-scm.com/docs/git-commit>`_.
315 Commit
316 ------
317 The commit button runs
318 `git commit <http://git-scm.com/docs/git-commit>`_.
319 The contents of the commit message editor is provided as the commit message.
321 Only staged files are included in the commit -- this is the same behavior
322 as running ``git commit`` on the command-line.
324 Line and Column Display
325 -----------------------
326 The current line and column number is displayed by the editor.
327 E.g. a ``5,0`` display means that the cursor is located at
328 line five, column zero.
330 The display changes colors when lines get too long.
331 Yellow indicates the safe boundary for sending patches to a mailing list
332 while keeping space for inline reply markers.
334 Orange indicates that the line is starting to run a bit long and should
335 break soon.
337 Red indicates that the line is running up against the standard
338 80-column limit for commit messages.
340 Keeping commit messages less than 76-characters wide is encouraged.
341 `git log <http://git-scm.com/docs/git-log>`_
342 is a great tool but long lines mess up its formatting for everyone else,
343 so please be mindful when writing commit messages.
346 Amend Last Commit
347 -----------------
348 Clicking on `Amend Last Commit` makes `git cola` amend the previous commit
349 instead of creating a new one.  `git cola` loads the previous commit message
350 into the commit message editor when this option is selected.
352 The `Status` tool will display all of the changes for the amended commit.
354 Create Signed Commit
355 --------------------
356 Tell `git commit` and `git merge` to sign commits using GPG.
358 Using this option is equivalent to passing the ``--gpg-sign`` option to
359 `git commit <http://git-scm.com/docs/git-commit>`_ and
360 `git merge <http://git-scm.com/docs/git-merge>`_.
362 This option's default value can be configured using the `cola.signcommits`
363 configuration variable.
365 Prepare Commit Message
366 ----------------------
367 The ``Commit -> Prepare Commit Message`` action or `Ctrl-Shift-Return` keyboard shortcut
368 runs the `cola-prepare-commit-msg` hook if it is available in `.git/hooks/`.
369 This is a `git cola`-specific hook that takes the same parameters
370 as Git's `prepare-commit-msg hook <https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks>`_
372 The hook is passed the path to `.git/GIT_COLA_MSG` as the first argument and the hook is expected to write
373 an updated commit message to specified path.  After running this action, the
374 commit message editor is updated with the new commit message.
376 To override the default path to this hook set the
377 `cola.prepareCommitMessageHook` `git config` variable to the path to the
378 hook script.  This is useful if you would like to use a common hook
379 across all repositories.
381 BRANCHES
382 ========
384 The `Branches` tool provides a visual tree to navigate through the branches.
385 The tree has three main nodes `Local Branch`, `Remote Branch` and `Tags`.
386 Branches are grouped by their name divided by the character '/'.Ex::
388     branch/feature/foo
389     branch/feature/bar
390     branch/doe
392 Will produce::
394     branch
395         - doe
396         + feature
397             - bar
398             - foo
400 Current branch will display a star icon. If current branch has commits
401 ahead/behind it will display an up/down arrow with its number.
403 Actions
404 -------
405 Various actions are available through the right-click context menu.
406 Different actions are available depending of selected branch status.
408 Checkout
409 ~~~~~~~~
410 The checkout action runs
411 `git checkout [<branchname>] <https://git-scm.com/docs/git-checkout>`_.
413 Merge in current branch
414 ~~~~~~~~~~~~~~~~~~~~~~~
415 The merge action runs
416 `git merge --no-commit [<branchname>] <https://git-scm.com/docs/git-merge>`_.
418 Pull
419 ~~~~
420 The pull action runs
421 `git pull --no-ff [<remote>] [<branchname>] <https://git-scm.com/docs/git-pull>`_.
423 Push
424 ~~~~
425 The push action runs
426 `git push [<remote>] [<branchname>] <https://git-scm.com/docs/git-push>`_.
428 Rename Branch
429 ~~~~~~~~~~~~~
430 The rename branch action runs
431 `git branch -M [<branchname>] <https://git-scm.com/docs/git-push>`_.
433 Delete Branch
434 ~~~~~~~~~~~~~
435 The delete branch branch action runs
436 `git branch -D [<branchname>] <https://git-scm.com/docs/git-branch>`_.
438 Delete Remote Branch
439 ~~~~~~~~~~~~~~~~~~~~
440 The remote branch action runs
441 `git push --delete [<remote>] [<branchname>] <https://git-scm.com/docs/git-push>`_.
444 APPLY PATCHES
445 =============
446 Use the ``File -> Apply Patches`` menu item to begin applying patches.
448 Dragging and dropping patches onto the `git cola` interface
449 adds the patches to the list of patches to apply using
450 `git am <http://git-scm.com/docs/git-am>`_.
452 You can drag either a set of patches or a directory containing patches.
453 Patches can be sorted using in the interface and are applied in the
454 same order as is listed in the list.
456 When a directory is dropped `git cola` walks the directory
457 tree in search of patches.  `git cola` sorts the list of
458 patches after they have all been found.  This allows you
459 to control the order in which patches are applied by placing
460 patchsets into alphanumerically-sorted directories.
462 CUSTOM WINDOW SETTINGS
463 ======================
464 `git cola` remembers modifications to the layout and arrangement
465 of tools within the `git cola` interface.  Changes are saved
466 and restored at application shutdown/startup.
468 `git cola` can be configured to not save custom layouts by unsetting
469 the `Save Window Settings` option in the `git cola` preferences.
471 DARK MODE AND WINDOW MANAGER THEMES
472 ===================================
473 Git Cola contains a ``default`` theme which follows the current Qt style and a
474 handful of built-in color themes.  See :ref:`cola_theme` for more details.
476 To use icons appropriate for a dark application theme, configure
477 ``git config --global cola.icontheme dark`` to use the dark icon theme.
478 See :ref:`cola_icontheme` for more details.
480 On macOS, using the ``default`` theme will automatically inherit "Dark Mode"
481 color themes when configured via System Preferences.  You will need to
482 configure the dark icon theme as noted above when dark mode is enabled.
484 On Linux, you may want Qt to follow the Window manager theme by configuring it
485 to do so using the ``qt5ct`` Qt5 configuration tool.  Install ``qt5ct`` on
486 Debian/Ubuntu systems to make this work.::
488     sudo apt install qt5ct
490 Once installed, update your `~/.bash_profile` to activate ``qt5ct``::
492     # Use the style configured using the qt5ct tool
493     export QT_QPA_PLATFORMTHEME=qt5ct
495 This only work with the `default` theme.  The other themes replace the color
496 palette with theme-specific colors.
498 Some systems may require that you override `QT_STYLE_OVERRIDE` in order to
499 use a dark theme or to better interact with the Desktop environment.
500 For example, users on Ubuntu have reported this setting:
502     # Override the default theme to adwait-dark
503     export QT_STYLE_OVERRIDE=adwaita-dark
505 `QT_STYLE_OVERRIDE` may already be set in your Desktop Environment, so check that
506 variable for reference if you get unexpected hangs when launching or the default theme
507 does not follow the desktop's theme on Linux.
509 If you don't want to set this variable globally then you can set it when launching
510 cola from the command-line:
512     QT_STYLE_OVERRIDE=adwaita-dark git cola
514 The following is a user-contributed custom `git-cola.desktop` file that can be used to
515 launch Git Cola with these settings preset for you:
517     [Desktop Entry]
518     Name=Git Cola (dark)
519     Comment=The highly caffeinated Git GUI
520     TryExec=git-cola
521     Exec=env QT_STYLE_OVERRIDE=adwaita-dark git-cola --prompt --icon-theme dark
522     Icon=git-cola
523     StartupNotify=true
524     Terminal=false
525     Type=Application
526     Categories=Development;RevisionControl;
527     X-KDE-SubstituteUID=false
529 You may also want to customize the diff colors when using a dark theme:
531     git config --global cola.color.add 86c19f
532     git config --global cola.color.remove c07067
534 Please see `#760 <https://github.com/git-cola/git-cola/issues/760>`_ for more details.
536 CONFIGURATION VARIABLES
537 =======================
538 These variables can be set using `git config` or from the settings.
540 cola.autocompletepaths
541 ----------------------
542 Set to `false` to disable auto-completion of filenames in completion widgets.
543 This can speed up operations when working in large repositories.
544 Defaults to `true`.
546 cola.autoloadCommitTemplate
547 ---------------------------
548 Set to `true` to automatically load the commit template in the commit message
549 editor If the commit.template variable has not been configured, raise the
550 corresponding error.
551 Defaults to `false`.
553 cola.blameviewer
554 ----------------
555 The command used to blame files.  Defaults to `git gui blame`.
557 cola.browserdockable
558 --------------------
559 Whether to create a dock widget with the `Browser` tool.
560 Defaults to `false` to speedup startup time.
562 cola.checkconflicts
563 -------------------
564 Inspect unmerged files for conflict markers before staging them.
565 This feature helps prevent accidental staging of unresolved merge conflicts.
566 Defaults to `true`.
568 cola.defaultrepo
569 ----------------
570 `git cola`, when run outside of a Git repository, prompts the user for a
571 repository.  Set `cola.defaultrepo` to the path of a Git repository to make
572 `git cola` attempt to use that repository before falling back to prompting
573 the user for a repository.
575 cola.dictionary
576 ---------------
577 Specifies an additional dictionary for `git cola` to use in its spell checker.
578 This should be configured to the path of a newline-separated list of words.
580 cola.expandtab
581 --------------
582 Expand tabs into spaces in the commit message editor.  When set to `true`,
583 `git cola` will insert a configurable number of spaces when tab is pressed.
584 The number of spaces is determined by `cola.tabwidth`.
585 Defaults to `false`.
587 cola.fileattributes
588 -------------------
589 Enables per-file gitattributes encoding and binary file support.
590 This tells `git cola` to honor the configured encoding when displaying
591 and applying diffs.
593 A `.gitattributes` file can set the ``binary`` attribute in order to force
594 specific untracked paths to be treated as binary files when diffing.
595 Binary files are displayed using a hexdump display.
597 .. sourcecode:: sh
599    # Treat *.exr files as binary files.
600    *.exr binary
602 cola.fontdiff
603 -------------
604 Specifies the font to use for `git cola`'s diff display.
606 cola.hidpi
607 -------------
608 Specifies the High DPI displays scale factor. Set `0` to automatically scaled.
609 Setting value between 0 and 1 is undefined.
610 This option requires at least Qt 5.6 to work.
611 See `Qt QT_SCALE_FACTOR documentation <https://doc.qt.io/qt-5/highdpi.html>`_
612 for more information.
614 .. _cola_icontheme:
616 cola.icontheme
617 --------------
618 Specifies the icon themes to use throughout `git cola`. The theme specified
619 must be the name of the subdirectory containing the icons, which in turn must
620 be placed in the inside the main "icons" directory in `git cola`'s
621 installation prefix.
623 If unset, or set either "light" or "default", then the default style will be
624 used.  If set to "dark" then the built-in "dark" icon theme, which is
625 suitable for a dark window manager theme, will be used.
627 If set to an absolute directory path then icons in that directory will be used.
628 This value can be set to multiple values using,
629 ``git config --add cola.icontheme $theme``.
631 This setting can be overridden by the `GIT_COLA_ICON_THEME` environment
632 variable, which can specify multiple themes using a colon-separated value.
634 The icon theme can also be specified by passing ``--icon-theme=<theme>`` on the
635 command line, once for each icon theme, in the order that they should be
636 searched.  This can be used to override a subset of the icons, and fallback
637 to the built-in icons for the remainder.
639 cola.imagediff.<extension>
640 --------------------------
641 Enable image diffs for the specified file extension.  For example, configuring
642 `git config --global cola.imagediff.svg false` will disable use of the visual
643 image diff for `.svg` files in all repos until is is explicitly toggled on.
644 Defaults to `true`.
646 cola.inotify
647 ------------
648 Set to `false` to disable file system change monitoring.  Defaults to `true`,
649 but also requires either Linux with inotify support or Windows with `pywin32`
650 installed for file system change monitoring to actually function.
652 cola.refreshonfocus
653 -------------------
654 Set to `true` to automatically refresh when `git cola` gains focus.  Defaults
655 to `false` because this can cause a pause whenever switching to `git cola` from
656 another application.
658 cola.linebreak
659 --------------
660 Whether to automatically break long lines while editing commit messages.
661 Defaults to `true`.  This setting is configured using the `Preferences`
662 dialog, but it can be toggled for one-off usage using the commit message
663 editor's options sub-menu.
665 cola.maxrecent
666 --------------
667 `git cola` caps the number of recent repositories to avoid cluttering
668 the start and recent repositories menu.  The maximum number of repositories to
669 remember is controlled by `cola.maxrecent` and defaults to `8`.
671 cola.dragencoding
672 -----------------
673 `git cola` encodes paths dragged from its widgets into `utf-16` when adding
674 them to the drag-and-drop mime data (specifically, the `text/x-moz-url` entry).
675 `utf-16` is used to make `gnome-terminal` see the right paths, but other
676 terminals may expect a different encoding.  If you are using a terminal that
677 expects a modern encoding, e.g. `terminator`, then set this value to `utf-8`.
679 cola.readsize
680 -------------
681 `git cola` avoids reading large binary untracked files.
682 The maximum size to read is controlled by `cola.readsize`
683 and defaults to `2048`.
685 cola.resizebrowsercolumns
686 -------------------------
687 `git cola` will automatically resize the file browser columns as folders are
688 expanded/collapsed when ``cola.resizebrowsercolumns`` is set to `true`.
690 cola.safemode
691 -------------
692 The "Stage" button in the `git cola` Actions panel stages all files when it is
693 activated and no files are selected.  This can be problematic if it is
694 accidentally triggered after carefully preparing the index with staged
695 changes.  "Safe Mode" is enabled by setting `cola.safemode` to `true`.
696 When enabled, `git cola` will do nothing when "Stage" is activated without a
697 selection.  Defaults to `false`.
699 cola.savewindowsettings
700 -----------------------
701 `git cola` will remember its window settings when set to `true`.
702 Window settings and X11 sessions are saved in `$HOME/.config/git-cola`.
704 cola.showpath
705 -------------
706 `git cola` displays the absolute path of the repository in the window title.
707 This can be disabled by setting `cola.showpath` to `false`.
708 Defaults to `true`.
710 cola.signcommits
711 ----------------
712 `git cola` will sign commits by default when set `true`. Defaults to `false`.
713 See the section below on setting up GPG for more details.
715 cola.startupmode
716 ----------------
717 Control how the list of repositories is displayed in the startup dialog.
718 Set to `list` to view the list of repositories as a list, or `folder` to view
719 the list of repositories as a collection of folder icons.
720 Defaults to `list`.
722 cola.statusindent
723 -----------------
724 Set to `true` to indent files in the Status widget.  Files in the `Staged`,
725 `Modified`, etc. categories will be grouped in a tree-like structure.
726 Defaults to `false`.
728 cola.statusshowtotals
729 ---------------------
730 Set to `true` to display files counts in the Status widget's category titles.
731 Defaults to `false`.
733 cola.tabwidth
734 -------------
735 The number of columns occupied by a tab character.  Defaults to 8.
737 cola.terminal
738 -------------
739 The command to use when launching commands within a graphical terminal.
741 `cola.terminal` defaults to `xterm -e` when unset.
742 e.g. when opening a shell, `git cola` will run `xterm -e $SHELL`.
744 `git cola` has built-in support for `xterm`, `gnome-terminal`, `konsole`.
745 If either `gnome-terminal`, `xfce4-terminal`, or `konsole` are installed
746 then they will be preferred over `xterm` when `cola.terminal` is unset.
748 The table below shows the built-in values that are used for the respective
749 terminal.  You can force the use of a specific terminal by configuring cola
750 accordingly.
752 cola.terminalshellquote
753 -----------------------
754 Some terminal require that the command string get passed as a string.
755 For example, ``xfce4-terminal -e "git difftool"`` requires shellquoting,
756 whereas ``gnome-terminal -- git difftool`` does not.
758 You should not need to set this variable for the built-in terminals
759 cola knows about -- it will behave correctly without configuration.
760 For example, when unconfigured, cola already knows that xfce4-terminal
761 requires shellquoting.
763 This configuration variable is for custom terminals outside of the builtin set.
764 The table below shows the builtin configuration.
766     Terminal            cola.terminal           cola.terminalshellquote
767     --------            -------------           -----------------------
768     gnome-terminal      gnome-terminal --       false
769     konsole             konsole -e              false
770     xfce4-terminal      xfce4-terminal -e       true
771     xterm               xterm -e                false
773 cola.textwidth
774 --------------
775 The number of columns used for line wrapping.
776 Tabs are counted according to `cola.tabwidth`.
778 .. _cola_theme:
780 cola.theme
781 ----------
782 Specifies the GUI theme to use throughout `git cola`. The theme specified
783 must be one of the following values:
785 * `default` â€“ default Qt theme, may appear different on various systems
786 * `flat-dark-blue`
787 * `flat-dark-green`
788 * `flat-dark-grey`
789 * `flat-dark-red`
790 * `flat-light-blue`
791 * `flat-light-green`
792 * `flat-light-grey`
793 * `flat-light-red`
795 If unset, or set to an invalid value, then the default style will be
796 used. The `default` theme is generated by Qt internal engine and should look
797 native but may look noticeably different on different platforms. The flat
798 themes on the other hand should look similar (but not identical) on various
799 systems.
801 The GUI theme can also be specified by passing ``--theme=<name>`` on the
802 command line.
804 cola.turbo
805 ----------
806 Set to `true` to enable "turbo" mode.  "Turbo" mode disables some
807 features that can slow things down when operating on huge repositories.
808 "Turbo" mode will skip loading Git commit messages, author details, status
809 information, and commit date details in the `File Browser` tool.
810 Defaults to `false`.
812 cola.color.text
813 ---------------
814 The default diff text color, in hexadecimal #RRGGBB notation.
815 Defaults to "#030303"::
817     git config cola.color.text '#030303'
819 cola.color.add
820 --------------
821 The default diff "add" background color, in hexadecimal #RRGGBB notation.
822 Defaults to "#d2ffe4"::
824     git config cola.color.add '#d2ffe4'
826 cola.color.remove
827 -----------------
828 The default diff "remove" background color, in hexadecimal #RRGGBB notation.
829 Defaults to "#fee0e4"::
831     git config cola.color.remove '#fee0e4'
833 cola.color.header
834 -----------------
835 The default diff header text color, in hexadecimal #RRGGBB notation.
836 Defaults to "#bbbbbb"::
838     git config cola.color.header '#bbbbbb'
840 core.hooksPath
841 --------------
842 Hooks are programs you can place in a hooks directory to trigger actions at
843 certain points in git’s execution. Hooks that don’t have the executable bit
844 set are ignored.
846 By default the hooks directory is ``$GIT_DIR/hooks``, but that can
847 be changed via the ``core.hooksPath`` configuration variable
849 The ``cola-prepare-commit-msg`` hook functionality and Cola's Git LFS
850 detection honors this configuration.
852 Please see the `git hooks documentation <https://git-scm.com/docs/githooks>`_
853 for more details.
855 gui.diffcontext
856 ---------------
857 The number of diff context lines to display.
859 gui.displayuntracked
860 --------------------
861 `git cola` avoids showing untracked files when set to `false`.
863 gui.editor
864 ----------
865 The default text editor to use is defined in `gui.editor`.
866 The config variable overrides the VISUAL environment variable.
867 e.g. `gvim -f -p`.
869 gui.historybrowser
870 ------------------
871 The history browser to use when visualizing history.
872 Defaults to `gitk`.
874 diff.tool
875 ---------
876 The default diff tool to use.
878 merge.tool
879 ----------
880 The default merge tool to use.
882 user.email
883 ----------
884 Your email address to be recorded in any newly created commits.
885 Can be overridden by the 'GIT_AUTHOR_EMAIL', 'GIT_COMMITTER_EMAIL', and
886 'EMAIL' environment variables.
888 user.name
889 ---------
890 Your full name to be recorded in any newly created commits.
891 Can be overridden by the 'GIT_AUTHOR_NAME' and 'GIT_COMMITTER_NAME'
892 environment variables.
894 ENVIRONMENT VARIABLES
895 =====================
897 GIT_COLA_ICON_THEME
898 -------------------
899 When set in the environment, `GIT_COLA_ICON_THEME` overrides the
900 theme specified in the `cola.icontheme` configuration.
901 Read :ref:`cola_icontheme` for more details.
903 GIT_COLA_SCALE
904 --------------
905 .. Important:: `GIT_COLA_SCALE` should not be used with newer versions of Qt.
907     Set `QT_AUTO_SCREEN_SCALE_FACTOR` to `1` and Qt will automatically
908     scale the interface to the correct size based on the display DPI.
909     This option is also available by setting `cola.hidpi` configuration.
911     See the `Qt High DPI documentation <https://doc.qt.io/qt-5/highdpi.html>`_
912     for more details.
914 `git cola` can be made to scale its interface for HiDPI displays.
915 When defined, `git cola` will scale icons, radioboxes, and checkboxes
916 according to the scale factor.  The default value is `1`.
917 A good value is `2` for high-resolution displays.
919 Fonts are not scaled, as their size can already be set in the settings.
921 GIT_COLA_TRACE
922 --------------
923 When defined, `git cola` logs `git` commands to stdout.
924 When set to `full`, `git cola` also logs the exit status and output.
925 When set to `trace`, `git cola` logs to the `Console` widget.
927 VISUAL
928 ------
929 Specifies the default editor to use.
930 This is ignored when the `gui.editor` configuration variable is defined.
932 LANGUAGE SETTINGS
933 =================
934 `git cola` automatically detects your language and presents some
935 translations when available.  This may not be desired, or you
936 may want `git cola` to use a specific language.
938 You can make `git cola` use an alternative language by creating a
939 `~/.config/git-cola/language` file containing the standard two-letter
940 gettext language code, e.g. "en", "de", "ja", "zh", etc.::
942     mkdir -p ~/.config/git-cola &&
943     echo en >~/.config/git-cola/language
945 Alternatively you may also use LANGUAGE environmental variable to temporarily
946 change `git cola`'s language just like any other gettext-based program.  For
947 example to temporarily change `git cola`'s language to English::
949     LANGUAGE=en git cola
951 To make `git cola` use the zh_TW translation with zh_HK, zh, and en as a
952 fallback.::
954     LANGUAGE=zh_TW:zh_HK:zh:en git cola
957 CUSTOM GUI ACTIONS
958 ==================
959 `git cola` allows you to define custom GUI actions by setting `git config`
960 variables.  The "name" of the command appears in the "Actions" menu.
962 guitool.<name>.cmd
963 ------------------
964 Specifies the shell command line to execute when the corresponding item of the
965 Tools menu is invoked. This option is mandatory for every tool. The command is
966 executed from the root of the working directory, and in the environment it
967 receives the name of the tool as GIT_GUITOOL, the name of the currently
968 selected file as FILENAME, and the name of the current branch as CUR_BRANCH
969 (if the head is detached, CUR_BRANCH is empty).
971 If ``<name>`` contains slashes (``/``) then the leading part of the name,
972 up until the final slash, is treated like a path of submenus under which the
973 actions will be created.
975 For example, configuring ``guitool.Commands/Util/echo.cmd`` creates a
976 ``Commands`` menu inside the top-level ``Actions`` menu, a ``Util`` menu
977 inside the ``Commands`` menu and an ``echo`` action inside the ``Commands``
978 submenu.
980 guitool.<name>.background
981 -------------------------
982 Run the command in the background (similar to editing and difftool actions).
983 This avoids blocking the GUI.  Setting `background` to `true` implies
984 `noconsole` and `norescan`.
986 guitool.<name>.needsfile
987 ------------------------
988 Run the tool only if a diff is selected in the GUI. It guarantees that
989 FILENAME is not empty.
991 guitool.<name>.noconsole
992 ------------------------
993 Run the command silently, without creating a window to display its output.
995 guitool.<name>.norescan
996 -----------------------
997 Don’t rescan the working directory for changes after the tool finishes
998 execution.
1000 guitool.<name>.confirm
1001 ----------------------
1002 Show a confirmation dialog before actually running the tool.
1004 guitool.<name>.argprompt
1005 ------------------------
1006 Request a string argument from the user, and pass it to the tool through the
1007 ARGS environment variable. Since requesting an argument implies confirmation,
1008 the confirm option has no effect if this is enabled. If the option is set to
1009 true, yes, or 1, the dialog uses a built-in generic prompt; otherwise the
1010 exact value of the variable is used.
1012 guitool.<name>.revprompt
1013 ------------------------
1014 Request a single valid revision from the user, and set the REVISION
1015 environment variable. In other aspects this option is similar to argprompt,
1016 and can be used together with it.
1018 guitool.<name>.revunmerged
1019 --------------------------
1020 Show only unmerged branches in the revprompt subdialog. This is useful for
1021 tools similar to merge or rebase, but not for things like checkout or reset.
1023 guitool.<name>.title
1024 --------------------
1025 Specifies the title to use for the prompt dialog.
1026 Defaults to the tool name.
1028 guitool.<name>.prompt
1029 ---------------------
1030 Specifies the general prompt string to display at the top of the dialog,
1031 before subsections for argprompt and revprompt.
1032 The default value includes the actual command.
1034 guitool.<name>.shortcut
1035 -----------------------
1036 Specifies a keyboard shortcut for the custom tool.
1038 The value must be a valid string understood by the `QAction::setShortcut()` API.
1039 See http://qt-project.org/doc/qt-4.8/qkeysequence.html#QKeySequence-2
1040 for more details about the supported values.
1042 Avoid creating shortcuts that conflict with existing built-in `git cola`
1043 shortcuts.  Creating a conflict will result in no action when the shortcut
1044 is used.
1046 SETTING UP GPG FOR SIGNED COMMITS
1047 =================================
1048 When creating signed commits, `gpg` will attempt to read your password from the
1049 terminal from which `git cola` was launched.
1050 The way to make this work smoothly is to use a GPG agent so that you can avoid
1051 needing to re-enter your password every time you commit.
1053 This also gets you a graphical passphrase prompt instead of getting prompted
1054 for your password in the terminal.
1056 Install gpg-agent and friends
1057 -----------------------------
1058 On Mac OS X, you may need to `brew install gpg-agent` and install the
1059 `Mac GPG Suite <https://gpgtools.org/macgpg2/>`_.
1061 On Linux use your package manager to install gnupg2,
1062 gnupg-agent and pinentry-qt, e.g.::
1064     sudo apt-get install gnupg2 gnupg-agent pinentry-qt
1066 On Linux, you should also configure Git so that it uses gpg2 (gnupg2),
1067 otherwise you will get errors mentioning, "unable to open /dev/tty".
1068 Set Git's `gpg.program` to `gpg2`::
1070     git config --global gpg.program gpg2
1072 Configure gpg-agent and a pin-entry program
1073 -------------------------------------------
1074 On Mac OS X, edit `~/.gnupg/gpg.conf` to include the line,::
1076     use-agent
1078 This is typically not needed on Linux, where `gpg2` is used, as
1079 this is the default value when using `gpg2`.
1081 Next, edit `~/.gnupg/gpg-agent.conf` to contain a pinentry-program line
1082 pointing to the pinentry program for your platform.
1084 The following example `~/.gnupg/gpg-agent.conf` shows how to use
1085 pinentry-gtk-2 on Linux::
1087     pinentry-program /usr/bin/pinentry-gtk-2
1088     default-cache-ttl 3600
1090 This following example `.gnupg/gpg-agent.conf` shows how to use MacGPG2's
1091 pinentry app on On Mac OS X::
1093     pinentry-program /usr/local/MacGPG2/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac
1094     default-cache-ttl 3600
1095     enable-ssh-support
1096     use-standard-socket
1098 Once this has been set up then you will need to reload your gpg-agent config::
1100     echo RELOADAGENT | gpg-connect-agent
1102 If you see the following output::
1104     OK
1106 Then the daemon is already running, and you do not need to start it yourself.
1108 If it is not running, eval the output of ``gpg-agent --daemon`` in your shell
1109 prior to launching `git cola`.::
1111     eval $(gpg-agent --daemon)
1112     git cola
1114 WINDOWS NOTES
1115 =============
1117 Git Installation
1118 ----------------
1119 If Git is installed in a custom location, e.g. not installed in `C:/Git` or
1120 Program Files, then the path to Git must be configured by creating a file in
1121 your home directory `~/.config/git-cola/git-bindir` that points to your git
1122 installation.  e.g.::
1124     C:/Tools/Git/bin
1126 SSH Agents for Key-based Authentication
1127 ---------------------------------------
1128 You may need to setup ssh-agent in order to use SSH key-based authentication
1129 on Windows. It has been reported that starting OpenSSH agent in
1130 Windows Services and adding the key using Powershell are necessary in order
1131 to get things working.
1133 Please see the following links for more details.
1135 https://stackoverflow.com/questions/18683092/how-to-run-ssh-add-on-windows
1137 FIPS Security Mode
1138 ==================
1139 `FIPS Security Mode <https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/FIPS_Mode_-_an_explanation>`_
1140 is available in newer versions of Python. These include Python 3.9+ and the
1141 patched Python 3.6 used by CentOS8/RHEL8 (and possibly others).
1143 Git Cola uses the ``hashlib.md5`` function and adheres to the FIPS security
1144 mode when available. Git Cola does not use the MD5 value for security purposes.
1145 MD% is used only for the purposes of implementing the ``cola/gravatar.py``
1146 Gravatar client.
1148 LINKS
1149 =====
1151 Git Cola's Git Repository
1152 -------------------------
1153 https://github.com/git-cola/git-cola/
1155 Git Cola Homepage
1156 -----------------
1157 https://git-cola.github.io/
1159 Mailing List
1160 ------------
1161 https://groups.google.com/group/git-cola