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!

+1

Log, Changes view: add more information about diffed commits to tab title

wolkenschieber 7 years ago updated by Marc Strapetz 7 years ago 2

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).

+1

Multi-repository Support: Git "Rebase HEAD To Fetched" option

Jeff Jensen 7 years ago updated by Marc Strapetz 4 years ago 0

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.

+1
Completed

Auto file backup on Discard

Sync 7 years ago updated by Wlf 1 year ago 8

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).
+1

Remove files incompatible with the current .gitignore

David Rodrigues 7 years ago updated by Paul Ewers 1 year ago 4

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 .


https://stackoverflow.com/a/19095988/755393

+1
Completed

Add "Quick Filter" for Repositories

Sync 7 years ago updated by benblo 2 years ago 3

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.

+1
Completed

Clearer option in "Amend" to re-use previous commit's comment

Sync 7 years ago updated 7 years ago 4

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.


+1

Add fossil support

Dan Gibson 7 years ago 0

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

+1
Completed

Text Editor Blame and History Integration (Notepad++ ideally)

Michael Sander 7 years ago updated by Thomas Singer 7 years ago 1

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.

+1

Less Intrusive Updates (background updates) and Messaging

Michael Sander 7 years ago updated by Thomas Singer 7 years ago 1

I purchased SmartGit and love it, but the constant messaging and update requests are a bit annoying. 


It would be great if there could be a less intrusive way of updating the software, such as background updates. I do not want to be reminded to download new versions or to restart the software. The downloads should happen automatically and maybe there can be an icon or some subtle notification that an update is pending a restart. Google Chrome does this nicely.


Also, the general notifications in the lower right corner are distracting. They pop up pretty much every time I load SmartGit for various reasons... new beta versions, new updates, etc. I don't want to turn them off altogether, but would be better if they were in a place that did not require my immediate attention.

+1

Compare: behavior of double clicking (select word)

yasokada 7 years ago updated by Thomas Singer 7 years ago 0

I like smartgit much better than other git client software.


However, I have one thing to be modified in terms of the user interface of the smartgit.

It is about "double clicking" over the code.


For example, I have the code (Unit1.cpp) like this.


```

void __fastcall E_nameKeyPress() {

    //  something

}

```


I would like to obtain the function name by double clicking. However, I will get like [nameKeyPress] not [E_nameKeyPress]. 

Current behavior of the smartgit code view is to obtain strings separated by "-" or "_" etc. 


I hope the developped would consider to modify the UI so that I can obtain [E_nameKeyPress].