Share your ideas on how to improve SmartGit!


This is no support platform! To report bugs or request support, please contact us directly. If in doubt ask us.


First search for a similar request and add your votes or comments there.


Take the time to describe your request as precise as possible, so users will understand what you want.


Follow the stackoverflow.com writing guidelines.

Thank you for your help!

+31

Branches view: allow more than one path hierarchy for grouping of path-like branch names

mhoss 7 years ago updated by Sjoerd 3 months ago 6

Allow more than one path hierarchy for grouping of path-like branch names


e.g. issue/internal/DEV-XYZ

Branches view
+31
Completed

Git: Interactive Rebase

Robert Pösel 8 years ago updated by Thomas Singer 7 years ago 11

Support interactive rebase directly from SmartGit.

Missing Git feature
+31
Completed

Replace "Commit" button with "Continue Rebase", "Discard" with "Abort Rebase", etc. [SG-10349]

omegatron 8 years ago updated by Marc Strapetz 7 years ago 6

To continue rebase after fixing a conflict, you have to press Commit.

To abort it, you select the project and press Discard?


These aren't very clear actions. It would be better if the buttons actually changed their names while in the middle of a rebase.

Missing Git feature
+30

Remote SSH Connect

Lee Brewington 8 years ago updated by Orbit 7 months ago 36

The ability to use a ssh connection or tunnel to remotely control git commands on a remote server. This would allow me to connect to other servers and do git / pull /logs...etc.

+29
Declined

Log: integrate into main window

Marc Strapetz 8 years ago updated 5 years ago 35

To unite Log and "Working Tree" window, there are two options: add Log functionality to the "Working Tree" window or add working tree functionality to the Log window. For conceptual and technical reasons, we opted for the latter optionhttps://smartgit.userecho.com/topics/655

Instead of having a separate Log window, this should be part of the main window in order to have all functionality of SmartGit be available in a single window.

This would mean to add all views of the Log to the main window, duplicating a couple of them with slightly different meaning, e.g. the Changes view in the Log is purely read-only, but can show comments - the one in the repository window can be used to stage/unstage; the Files view in the Log does not allow any of the main window's commands; the Branches view in the Log allows toggling anchor commits for the Commits graph and shows additional items, e.g. recyclable commits. It would be a horrible amount of work and still would require stand-alone Log windows, e.g. for file or subdirectory logs.

+28
Completed

Changes view: optionally show as unified diff

peradetlic 8 years ago updated by Jeff Jensen 3 years ago 15 1 duplicate

The simplified or "unified" diff view (the default on GitHub for example) is often the preferred way to look at changes, especially on smaller screens

+28
Completed

Git: Stash selected files [SG-10576]

Marc Strapetz 8 years ago updated by Henrik Heimbuerger 7 years ago 3
Missing Git feature
+26
Completed

add support for diff filter texconv [SG-14488]

Honigmelone 7 years ago updated by Marc Strapetz 3 years ago 14

It is possible to tell git diff how to convert files into a readable form for the diff command.  For example with the following lines slx files are unzipped before the diff is shown

[diff "slx"]
textconv = unzip -c -a

See also this topic

https://stackoverflow.com/questions/34356401/diff-between-simulink-models-slx

A similar but more specific idea is already on this site

https://smartgit.userecho.com/topics/369-support-smudge-filter-for-git-crypt-diff/

+26
Completed

Project-level ignore

omegatron 7 years ago updated by Thomas Singer 6 years ago 1

As in this comment


> It would be awesome to have an option "Add To Ignore List" which allows to choose "add to .gitignore" or "add to .git/info/exclude (will be ignored at this computer only)".


When we right-click on a file to ignore it, it should give the option of ignoring it in a .gitignore (that gets committed along with the repo) or .git/info/exclude (which is unique to our computer) or a global gitignore for all repos (garbage files like Thumbs.db. etc)

+25
Completed

Add a "git clean" feature (remove untracked files)

ubruhin 7 years ago updated by Thomas Singer 6 years ago 8

Sometimes one want to clean up the working directory by removing all untracked files, which on the command line is done by the "git clean" command. It would be great to have this feature available in SmartGit.


The most important flags of the "git clean" command may be available as check boxes:

  • -d: Remove untracked directories
  • -x: Also remove ignored files
  • -X: Only remove ignored files

The -f flag (force) may automatically be used(?).


See also https://git-scm.com/docs/git-clean