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 precisely as possible, so users will understand what you want. Please note that we appreciate your time and input, but we don't give any guarantees that a certain feature will be implemented. Usually, a minimum requirement is a sufficient number of votes. Hence, please don't comment like "when will this be implemented", but vote instead.
Follow the stackoverflow.com writing guidelines.
Thank you for your help!

Pull: add an optional confirmation dialog for large rebases
If origin branch has diverged (other developer has rebased it in order to do pull request, for example), it might be really expensive to do a simple pull where the whole rebase process is then run locally, even if you had no changes at all, or some minor changes. In ideal world this should not happen, of course.
In those cases, a simple optional warning dialog would be appreciated so that if you do a pull, you can decide whether just to reset the branch and do cherry-picks instead (if needed).
I don't know what would be the reasonable threshold for this, but maybe something like behind 20 and pushable commits 20.

Allow changing the space replacement character for branch names
When naming a new branch you can type as normal and hit the space bar in between words. SmartGit will insert an underscore ("_") in place of the space (" ") when making the branch name. I like being able to just hit the space bar and letting SmartGit make the branch name valid, but I prefer to use dash ("-") to separate words in branch names because it is more easily readable to me.
Could there be a SmartGit setting to specify what character should be used to replace spaces in branch names? This could let people use "_", "-", "+", or even "/" as they prefer.

Log, Changes view: add more information about diffed commits to tab title
The changes view has a great diff part. This diff shows the changes between the previous and the current revision. However I sometimes have trouble telling both apart. This might arise from using Eclipse, as in its diff view the order is different. (Don't pin me down on that, it can switch sides to add to the confusion).
What would really help me is some additional information in the diff part. Annotate the header with a commit date and/or the author. Or just adapt the tab title to: Changes of File (Modified, old-sha vs sha current).

Multi-repository Support: Git "Rebase HEAD To Fetched" option
I have many repo groups, some with only a few repos and some with over 20. I use the "fetch in background" feature to do so when online, in case I am soon working offline, and also as a local preview of incoming changes.
With many repos having fetched changes, similar to Pull/Push on selected repos and repo groups, I want a single menu option to rebase each repo to the fetched changes. This would save a lot of manual processing work and waiting time on many updated repos, especially repo groups with larger repo quantities.

Auto file backup on Discard
In SnapshotCM, this program will always make a .bak copy of the file (saved in the same folder) on every "Discard" message. If there is already a .bak file, it just increments to .bak1 on the next "Discard".
This feature is really handy to cater the case of accidental Discards (e.g. laggy computer, clicked on wrong button).
Having a bunch of .bak file in the workspace was a bit annoying. So, if SmartGit wants to implement a similar safety feature, I suggest:
- Saving it somewhere in %localappdata%. It can probably just follow the hierarchy of the workspace.
- User then invokes a "See backups" button, which opens up a window (like the Log Window).
- By default, save only up to 5 backups per file (or something like that, to prevent extreme accumulation). The idea is to mainly to cater accidental Discards, or recent Discards.
- It can be turned off by default, and is an opt-in option so user knows where the backups are saved (or perhaps allow the user to pick a backup space).

Remove files incompatible with the current .gitignore
If you create a file like "abc.txt", commit it, then create a gitignore to ignore that file, this file will keep being part of the repository. So a solution like "removed ignored files" should be great.
It could be done automatically, like an suggestion to user just remove a new ignored file from repository, or as a tool option (via menu).
It basically do that:
git rm -r --cached . git add .

Add "Quick Filter" for Repositories
I have a lot of repositories in my [Repositories] window, and most of them are placed in groups, and typically collapsed when not needed. When I need to look for one particular repo which I know the name (or partial name), I need to expand the repo groups and search manually.
It should be nice if the bottom of the window includes a quick search text field to filter things out as I type.

Clearer option in "Amend" to re-use previous commit's comment
The current behavior when "Amend"-ing a commit:
- If the comment dialog is blank and "Amend" is checked, the previous commit's message is automatically populated
- If the comment dialog is not blank and "Amend" is checked, nothing is changed.
For the second bullet point, the usual workaround is to clear the message and uncheck-then-check "Amend". I realized this while playing around with SmartGit from day 1, but I realize that none of my teammates realize this.
Perhaps add another explicit checkbox like "override with previous commit's message". Implicit behavior (i.e. having to manually clear the field) is bad UI, IMO.

Add fossil support
Fossil is lacking a good gui. Since SmartGit supports git and hg, perhaps it could support fossil too?

Text Editor Blame and History Integration (Notepad++ ideally)
I spend most of my time in my text editor. It would be really nice if I could use a keyboard shortcut within the editor to get a SmartGit git history of the file I'm looking at. Similarly, it would be great if I could highlight a line in a file and get a git blame report of changes to that line.
I use Notepad++, so obviously I'm biased and I'd like to see support there (they have a nice plugin architecture), but I imagine this RFE would apply to other editors as well.
Customer support service by UserEcho