Git-cola

Latest version: v4.12.0

Safety actively analyzes 723929 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 10 of 19

2.1.0

======
Usability, bells and whistles
-----------------------------
* `git dag` now forwards all unknown arguments along to `git log`.
(`389 <https://github.com/git-cola/git-cola/issues/389>`_)

* Line-by-line interactive staging was made more robust.
(`399 <https://github.com/git-cola/git-cola/pull/399>`_)

* "Bookmarks" was renamed to "Favorites".
(`392 <https://github.com/git-cola/git-cola/issues/392>`_)

* Untracked files are now displayed using a unique icon.
(`388 <https://github.com/git-cola/git-cola/pull/388>`_)

Fixes
-----
* `git dag` was triggering a traceback on Fedora when parsing Git logs.
(`bz 181676 <https://bugzilla.redhat.com/show_bug.cgi?id=1181686>`_)

* inotify expects Unicode paths on Python3.
(`393 <https://github.com/git-cola/git-cola/pull/393>`_)

* Untracked files are now assumed to be UTF-8 encoded.
(`401 <https://github.com/git-cola/git-cola/issues/401>`_)

2.0.8

======
Usability, bells and whistles
-----------------------------
* `git cola` can now create GPG-signed commits and merges.
See the documentation for details about setting up a GPG agent.
(`149 <https://github.com/git-cola/git-cola/issues/149>`_)

* The status widget learned to copy relative paths when `Ctrl+x` is pressed.
(`358 <https://github.com/git-cola/git-cola/issues/358>`_)

* Custom GUI actions can now define their own keyboard shortcuts by
setting `guitool.$name.shortcut` to a string understood by the Qt
`QKeySequence` API, e.g. `Alt+X`.
See the `Qt docs <https://doc.qt.io/qt-6/qkeysequence.html#toString>`_
for more details about the supported values.

* `git cola` learned to rename branches.
(`364 <https://github.com/git-cola/git-cola/pull/364>`_)
(`278 <https://github.com/git-cola/git-cola/issues/278>`_)

* `git dag` now has a "Show history" context menu which can be used to filter
history using the selected paths.

Fixes
-----
* `sphinxtogithub.py` was fixed for Python3.
(`353 <https://github.com/git-cola/git-cola/pull/353>`_)

* The commit that changed how we read remotes from `git remote`
to parsing `git config` was reverted since it created problems
for some users.

* Fixed a crash when using the `rebase edit` feature.
(`351 <https://github.com/git-cola/git-cola/issues/351>`_)

* Better drag-and-drop behavior when dropping into gnome-terminal.
(`373 <https://github.com/git-cola/git-cola/issues/373>`_)

Packaging
---------
* The `git-cola-folder-handler.desktop` file handler was fixed
to pass validation by `desktop-file-validate`.
(`356 <https://github.com/git-cola/git-cola/issues/356>`_)

* The `git.svg` icon was renamed to `git-cola.svg`, and `git cola` was taught
to prefer icons from the desktop theme when available.

2.0.7

======
Usability, bells and whistles
-----------------------------
* New hotkey: `Ctrl+Shift+M` merges branches.

* New hotkey: `Ctrl+R` refreshes the DAG viewer.
(`347 <https://github.com/git-cola/git-cola/issues/347>`_)

Fixes
-----
* We now use `git config` to parse the list of remotes
instead of parsing the output of `git remote`, which
is a Git porcelain and should not be used by scripts.

* Avoid "C++ object has been deleted" errors from PyQt4.
(`346 <https://github.com/git-cola/git-cola/issues/346>`_)

Packaging
---------
* The `make install` target now uses `install` instead of `cp`.

2.0.6

======
Usability, bells and whistles
-----------------------------
* Updated Brazilian Portuguese translation.

* The status and browse widgets now allow drag-and-drop into
external applications.
(`335 <https://github.com/git-cola/git-cola/issues/335>`_)

* We now show a progress bar when cloning repositories.
(`312 <https://github.com/git-cola/git-cola/issues/312>`_)

* The bookmarks widget was simplified to not need a
separate dialog.
(`289 <https://github.com/git-cola/git-cola/issues/289>`_)

* Updated Traditional Chinese translation.

* We now display a warning when trying to rebase with uncommitted changes.
(`338 <https://github.com/git-cola/git-cola/issues/338>`_)

* The status widget learned to filter paths.
`Ctrl+Shift+S` toggles the filter widget.
(`337 <https://github.com/git-cola/git-cola/issues/337>`_)
(`339 <https://github.com/git-cola/git-cola/pull/339>`_)

* The status widget learned to move files to the trash
when the `send2trash <https://github.com/hsoft/send2trash>`_
module is installed.
(`341 <https://github.com/git-cola/git-cola/issues/341>`_)

* "Recent repositories" is now a dedicated widget.
(`342 <https://github.com/git-cola/git-cola/issues/342>`_)

* New Spanish translation thanks to Pilar Molina Lopez.
(`344 <https://github.com/git-cola/git-cola/pull/344>`_)

Fixes
-----
* Newly added remotes are now properly seen by the fetch/push/pull dialogs.
(`343 <https://github.com/git-cola/git-cola/issues/343>`_)

2.0.5

======
Usability, bells and whistles
-----------------------------
* New Brazilian Portuguese translation thanks to Vitor Lobo.

* New Indonesian translation thanks to Samsul Ma'arif.

* Updated Simplified Chinese translation thanks to Zhang Han.

* `Ctrl+Backspace` is now a hotkey for "delete untracked files" in
the status widget.

* Fetch/Push/Pull dialogs now use the configured remote of the current
branch by default.
(`324 <https://github.com/git-cola/git-cola/pull/324>`_)

Fixes
-----
* We now use `os.getcwd()` on Python3.
(`316 <https://github.com/git-cola/git-cola/pull/316>`_)
(`326 <https://github.com/git-cola/git-cola/pull/326>`_)

* The `Ctrl+P` hotkey was overloaded to both "push" and "cherry-pick",
so "cherry-pick" was moved to `Ctrl+Shift+C`.

* Custom GUI tools with mixed-case names are now properly supported.

* "Diff Region" is now referred to as "Diff Hunk" for consistency
with common terminology from diff/patch tools.
(`328 <https://github.com/git-cola/git-cola/issues/328>`_)

* git-cola's test suite is now portable to MS Windows.
(`332 <https://github.com/git-cola/git-cola/pull/332>`_)

2.0.4

======
Usability, bells and whistles
-----------------------------
* We now handle the case when inotify `add_watch()` fails
and display instructions on how to increase the number of watches.
(`263 <https://github.com/git-cola/git-cola/issues/263>`_)

* New and improved zh_TW localization thanks to V字龍(Vdragon).
(`265 <https://github.com/git-cola/git-cola/pull/265>`_)
(`267 <https://github.com/git-cola/git-cola/pull/267>`_)
(`268 <https://github.com/git-cola/git-cola/pull/268>`_)
(`269 <https://github.com/git-cola/git-cola/issues/269>`_)
(`270 <https://github.com/git-cola/git-cola/pull/270>`_)
(`271 <https://github.com/git-cola/git-cola/pull/271>`_)
(`272 <https://github.com/git-cola/git-cola/pull/272>`_)

* New hotkeys: `Ctrl+F` for fetch, `Ctrl+P` for push,
and `Ctrl+Shift+P` for pull.

* The bookmarks widget's context menu actions were made clearer.
(`281 <https://github.com/git-cola/git-cola/issues/281>`_)

* The term "Staging Area" is used consistently in the UI
to allow for better localization.
(`283 <https://github.com/git-cola/git-cola/issues/283>`_)

* The "Section" term is now referred to as "Diff Region"
in the UI.
(`297 <https://github.com/git-cola/git-cola/issues/297>`_)

* The localization documentation related to the LANGUAGE
environment variable was improved.
(`293 <https://github.com/git-cola/git-cola/pull/293>`_)

* The "Actions" panel now contains tooltips for each button
in case the button labels gets truncated by Qt.
(`292 <https://github.com/git-cola/git-cola/issues/292>`_)

* Custom `git config`-defined actions can now be run in the
background by setting `guitool.<name>.background` to `true`.

Fixes
-----
* We now use bold fonts instead of SmallCaps to avoid
artifacts on several configurations.

* We now pickup `user.email`, `cola.tabwidth`, and similar settings
when defined in /etc/gitconfig.
(`259 <https://github.com/git-cola/git-cola/issues/259>`_)

* Better support for Unicode paths when using inotify.
(`bz 1104181 <https://bugzilla.redhat.com/show_bug.cgi?id=1104181>`_)

* Unicode fixes for non-ASCII locales.
(`266 <https://github.com/git-cola/git-cola/issues/266>`_)
(`273 <https://github.com/git-cola/git-cola/issues/273>`_)
(`276 <https://github.com/git-cola/git-cola/issues/276>`_)
(`282 <https://github.com/git-cola/git-cola/issues/282>`_)
(`298 <https://github.com/git-cola/git-cola/issues/298>`_)
(`302 <https://github.com/git-cola/git-cola/issues/302>`_)
(`303 <https://github.com/git-cola/git-cola/issues/303>`_)
(`305 <https://github.com/git-cola/git-cola/issues/305>`_)

* Viewing history from the file browser was fixed for Python3.
(`274 <https://github.com/git-cola/git-cola/issues/274>`_)

* setup.py was fixed to install the `*.rst` documentation.
(`279 <https://github.com/git-cola/git-cola/issues/279>`_)

* Patch export was fixed for Python3.
(`290 <https://github.com/git-cola/git-cola/issues/290>`_)

* Fixed adding a bookmark with trailing slashes.
(`295 <https://github.com/git-cola/git-cola/pull/295>`_)

* The default `git dag` layout is now setup so that its widgets
can be freely resized on Linux.
(`299 <https://github.com/git-cola/git-cola/issues/299>`_)

* Invalid tag names are now reported when creating tags.
(`296 <https://github.com/git-cola/git-cola/pull/296>`_)

Page 10 of 19

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.