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!

0

Mark compared commits by color

arcadius 4 months ago updated 4 months ago 2

When 2 commits are selected, we can compare files inside them by content.

But it's not clear which commit is on the left side of Changes window and which is on the right .

Now:

Image 883


Want smth like:

Image 884

Changes view Graph
0

Move focus between windows

arcadius 4 months ago 0

Moving between windows by Ctrl+Shift+<digit> is not quite handy.

Please add 4 features: Move focus between windows (to up, down, left, right).
Maybe assign shortcuts Ctrl  + Arrows by default.

GUI
0

Do not automatically scroll down on commit

pol henarejos 4 months ago updated by Thomas Singer 4 months ago 2

When I have multiple files with changes to commit, they are placed in red at the top of the window. Then I select some files to make some commits group by group. Every time, I make a commit, the scroll is moved down to the place on the list of unchanged files, since the committed files are still selected and these files are moved to unchanged files. This forces to me to move the scroll up again to continue with the next commit.

My proposal is to keep the scroll on the top of window, regardless the commit or if the selected file is moved due to status changed.

GUI
0
Completed

Add repository to currently selected virtual group

Peter von Niederhäusern 4 months ago updated by Thomas Singer 4 months ago 3

If virtual group selected, add or create does not put the physical repository under that selected virtual group

Standard window
0

More clearly describe what password you're asking for

GreenAsJade 4 months ago updated by Gxost 3 months ago 4

From time to time SmartGit asks me for "the master password".

I have so many passwords for different things, I have no idea what password it wants - or indeed what is really popping up this dialog, is it the OS asking for the password to my vault even?   

In fact, I think it's asking for the github password for the account that I'm using - I wish it would say so much more clearly.

0

In Graph pane, when branches are grouped due to display width, enable right-click menu to access other branches

griscom 4 months ago updated 4 months ago 0

In the Graph pane, when there are too many branches on a commit the "less important" ones are grouped into an "X branches" button:

Image 877

If you click on this button, it shows the extra branches in a popup:

Image 878

But, there's no way to take actions on these additional branches; you must look for them in the Branches pane. Three things get in the way of manipulating them directly in the Graph pane: 

  • If you right-click on the "X branches" button then a menu appears, but the "Check Out..." choice brings up a dialog where you must either create a new branch or work on a detached head
  • As soon as you move your cursor off of the "X branches" button the popup goes away
  • Even if the popup remained, it's unlikely that right-clicking on a branch name would bring up a menu and let you operate on that branch.

Proposal:

  • If you right-click on the "X branches" button, show an actual popup menu listing the available branches
  • Each branch name has a submenu giving the usual options for right-clicking such a branch
Graph
0
Completed

Git-Flow: support hooks

yummytea1 5 months ago updated by Daniel Siegl 4 months ago 5

I'm trying to add hooks for the git-flow process, but they do not seem to be run when using smartgit.

I assumed smartgit uses gitflow-avh since the docs refer to it (here). So I added a pre-flow-feature-start hook to simply write to a file when a new feature is started (as described here). This works fine from the CLI, but with smartgit nothing happens.

Improve Git commands Log window Working Tree window
Answer
Daniel Siegl 4 months ago

Did you try to enable "pre-installed" Git-Flow in preferences?

0

Show submodules with modified content in the commit files window

Sulfur (Saad) 5 months ago updated 5 months ago 10

When performing a git status . command in CLI, we can see submodules that have new commits and submodules that have modified content and/or untracked content

Image 870

It would be great if SmartGit can show this in the files dialog. As it stands, I only see submodules with new commits which makes it possible for me to miss some submodule commits that I need to make.

0

Trigger a refresh via command line/bash

sgtcoder 5 months ago updated 5 months ago 2

In order to trigger a refresh for SmartGit, you have to close the app out and re-open it.

It would be nice to have a command via shell that can trigger a refresh. I have a script that I pull down all the repos and then it would be nice to have the refresh command triggered in SmartGit to refresh all the green arrows for pull.

Command line options
0
Completed

Modify commit should work like cherry pick

rconde01 5 months ago updated by Thomas Singer 5 months ago 1

I expected that "modify commit" would work like cherry pick without commit. In other words, it would rewind to before the selected commit and then stage but not commit the selected commit so that you can edit it. Then when you complete it should re-apply all subsequent commits. It would be great if "modify commit" did this, or there was another functionality which provided this workflow.