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!

+9
Completed

Add full support for shallow clone workflow

Christopher Kline 9 years ago updated by Thomas Singer 5 years ago 4

Shallow repos are extremely useful when working with huge repositories with long histories and large amounts of data (like binaries).


Since git 1.9 (with better support since 2.5), git has fully supported shallow repos (you can push/pull to/from the remote, etc), and is now very configurable. This lets developers pull down only a small amount of the history, making it faster to work locally (due to less data in the repo that needs to be maintained), and also avoiding the need to pull huge amounts of data over the network when cloning.


SmartGit currently has an option, when cloning a repo, to clone only to a specific depth. However, this is not sufficient for fully supporting a 'shallow repo' workflow, for the following reasons:

Missing functionality:


  • If you wish to clone to a specific depth, you only have the option of doing so if you un-check the "fetch all heads and tags". There is no support for fetching all heads so long as they are within the desired commit depth (the "--no-single-branch" option in 'git clone').
  • No support for choosing --shallow-submodules vs --no-shallow-submodules when cloning.
  • There's only an option to clone to a depth, and not "clone since date" (the "--shallow-since=<date>" option in git clone/fetch)
  • No support for --shallow-exclude in clone/fetch/pull
  • No way to change the desired depth after cloning (that I could find), to use subsequent fetches/pulls to trim or fill-in the history
  • No support for --unshallow, --update-shallow, or --deepen-shallow when fetching

Bugs (as of SmartGit 17.1 preview 6 #11041):


  • Regardless of what depth you clone to, when SmartGit does a subsequent fetch, it does not specific the desired depth, so you end up pulling the entire repo anyhow. This defeats the purpose of a shallow clone

This request is similar to https://smartgit.userecho.com/topics/395-implement-a-light-version-of-repository-management/ but expands upon it significantly.

+9
Completed

Add support for gitflow-avh

Kevin 9 years ago updated by Marc Strapetz 6 years ago 11

gitflow's last update was about 4 and a half years ago. It's no longer maintained so no new features and more importantly no bug fixes. gitflow-avh is the most popular fork of gitflow and remains active to this day. According to the author of gitflow-avh both Debian and Ubuntu have switched to his fork to provide the git-flow package which is a very good indicator that the original project has died and that AVH is a suitable alternative.

+9
Completed

Add option to find common ancestor (aka merge base) for selected commits

Mikhail Matrosov 9 years ago updated by Marc Strapetz 4 years ago 3

Investigating history of commits with many merges can be a real pain. One useful feature is to be able to locate merge base. Not only for merge commits (though it would be useful on its own), but also for arbitrary pair of commits.

+9
Completed

Shift+Scroll To Scroll Sideways

Colin Richardson 9 years ago updated by Ondra Komárek 3 years ago 6

On browsers (well, atleast in chrome), if you have a really wide webpage (Trello for example) You can use Shift+Scroll to scroll wideways rather than up and down.


It would be nice if I could do this on Compare Panel too. For comparing long lines of code.


Not normally a problem, but I have a monitor in portrait orientation, and if you are using Index Editor, it doesn't leave much room. I just noticed it was missing was all.

+9

Option to disable all notifications from syntevo but updates

Kanstantsin Kamkou 9 years ago updated by Thomas Singer 6 years ago 9

Please allow paid versions to ignore all synteo messages (help us to improve ..., a new beta versions..., etc.).

+9
Completed

Rebase by default when pulling

pgoiffon 9 years ago updated by anonymous 9 years ago 12

For a fresh new SmartGit install in my team, we always need to change the default pull behavior : doing a rebase with local changes instead of a merge commit. The later produces absolutely unreadable logs and I think for the vast majority of users is an aberration.

So I'd suggest to change the default value, or make it configurable as soon as clogin / opening a new repo.

+9
Completed

Support for git-Repo. The multiple repository management tool built by google [SG-11200​]

Steven VanWerkhoven 9 years ago updated by cppLord 8 years ago 5

SmartGit should support git-repo. https://code.google.com/p/git-repo/

This is a multiple repository management tool built by google used by several large fortune 500 companies. It provides a easy way to sync a large number of repos (over 100 or more) to a specified commit tag that is specified in a manifest file, which is in it's own repo. This is how we are managing our software build where each project can contain hundreds of repos.

+9

Built-in file editor

gone76347543068432234 10 years ago 0

It's already in the "Show Changes" option, but you should add a setting to use that editor when you double click on a file in the files tab.

+9
Completed

Add new repo to the currently selected group

alyst 10 years ago updated by Davide F 2 years ago 14

Currently the new repository is appended to the bottom of the list, it would be nice if it's added to the currently selected repository group instead (or add the "repository group" select box to the "Add repository..." dialog and make the currently selected group the default option). It's tedious to have to scroll and drag the new repo through the long list.

+9
Declined

Show the git command in tool-tips when hovering mouser over menu items and top toolbar

Nikunj Bhatt 10 years ago updated by Thomas Singer 7 years ago 3

However, "after" executing a command from SmartGit is showed in the Output window but showing the respective git command will make CLI users easily aware of the commands provided by SmartGit "before" actually executing; and newbies can also learn commands.