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!

+10
Completed

Recall last commit message with up arrow key

Daniela Rodriguez Careri 8 years ago updated by Thomas Singer 7 years ago 3

Back when I used SVN, we had TortoiseSVN which when you where about to enter the commit message you were able to recall the last commit message with the up arrow key if the textarea was blank. This was a very handy feature when you were commiting a series of related changes (for example: "User CRUD UI: Fixed race condition", "User CRUD UI: Fixed button margin", etc.). You just pressed "up" and the previous message was there for you to edit. :-)

+10
Completed

Rename stash

Arash Khosravi 8 years ago updated by Thomas Singer 6 years ago 7

I would like to rename my stash after I created it.

This stackoverflow link shows how we can do it with git commands mnually:

https://stackoverflow.com/a/35549615/3328979

+10
Completed

Improve 'Refresh' performance for large repositories

Christopher Kline 8 years ago updated by Marc Strapetz 8 years ago 4

On large repositories, SmartGit performs sluggishly compared to command-line git when doing refresh operations. 


This makes the experience of working in SmartGit frustrating in large repos, because SmartGit performs refresh operations frequently (e.g. after pulls, after certain failed push operations, when the window comes to the foreground, etc).


As an example, we have a repo containing approximately 254,000 files. Here are the results comparing SmartGit ("17.1 preview 7 #11051, installed: #11019") versus Git for Windows ("2.12.2", 64-bit).


Initial refresh after startup ("cold cache" test):

  • SmartGit: 24 seconds
  • Command line: 2.5 seconds 

Subsequent refreshes of same repo:

  • SmartGit: 14 seconds
  • Command line: 1.5 seconds 


In these tests, SmartGit is consistently 9-10x slower than command-line git.


Perhaps this is because SmartGit is (last I checked with Syntevo) using the java-base jgit library for all read-only operations. 


Significant work has been put into command-line git over the past year (especially by Microsoft itself, which now uses git as their own internal source control on major products like Windows itself). 


It's a shame that SmartGit does not take advantage of these improvements to make the SmartGit experience as snappy as the command line one.



+10

Allow setting author during commit

omegatron 8 years ago 0

If someone sends me code and I commit it, I want to list them as the author but it seems only possible to edit the commit after the fact.

+10
Completed

Log: show "key" on signed commit or tag

Thibault M. 9 years ago updated by Marc Strapetz 5 years ago 9

Hi,


Relative to the thread https://groups.google.com/forum/#!topic/smartgit/3w46shCd_mg it could be nice to have the "key" icon for all signed commit (like for signed tags). The static key color could be replaced with green or red key to have a quick look of the GPG key integrity/verification.


It could be nice too if the "key" icon will be show on the labels (view picture)


Image 27

+10
Completed

Commit highlight for short / long description (instead of hard limits)

Igor Santos 9 years ago updated by Thomas Singer 5 years ago 10 1 duplicate

Instead or alternatively to the hard limits which can be configured in the Preferences by Show line length guides, the commit message textareas could do some highlighting on the text, like VIM does, allowing us to format our commits like the Linux standard: titles of 50 char at most, one empty line, description below.


Image 21


Image 22


This is supported by GitHub by giving you a short-desc and long-desc fields, and warning on 50chars+:

Image 23

+10
Completed

Push To: Show branch name when pushing

Sebastiano Poggi 9 years ago updated by Thomas Singer 7 years ago 2

When you push a branch to a remote, the Push To dialog does not show the branch name. I'd love to have that so when I'm using the keyboard I'm sure I'm not pushing the wrong branch.

+9

"Conventional" commit message support

Michał Sochoń 4 years ago updated by Thomas Singer 3 years ago 4

Would be nice to allow formatting commits in the window according to conventiona-changelog format.

https://www.conventionalcommits.org/en/v1.0.0/

+9

Monorepo support [SG-14535]

Marc Strapetz 5 years ago updated 4 years ago 3

Support for possibly huge "mono repositories", by:

  • offering a "shallow" clone of the repository
  • selectively fetching projects from the repository, using Git's "sparse checkout" feature and "partial clone" feature
  • limiting Log graph (and dependent views) to such a fetched project

Support should be implemented in a subtle way to not complicate the GUI for the majority of "plain" repository users.

Related topics:

Please comment on this topic about your monorepo size:

  • Number of projects
  • Number of commits overall (git rev-list --all --count)
  • Number of files in HEAD overall (git ls-tree -r HEAD | grep -c "")
+9

Stash should work similar to Commit - the selection should define whether to stash all or just the selection

Iulian Onofrei 6 years ago updated by Thomas Singer 6 years ago 2

Not selecting any file, both cmd + k and cmd + s commits, respectively stashes all the files in the working tree.

Selecting one or more files from the working tree, cmd + k commits them while cmd + s stashes all the files, in which case the selection is completely ignored.

This is not consistent and, at least for me, very unintuitive. A lot of times I selected some files, hit cmd + s, and pressed enter, only to see that all the files were stashes instead.