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 precise as possible, so users will understand what you want.


Follow the stackoverflow.com writing guidelines.

Thank you for your help!

+3

Multi-repository Support for Branch Actions: Checkout, Add, Delete, and Rename

Jeff Jensen 3 years ago updated by maL oun 2 years ago 1

My regular multi-repo need is branch manipulation across many repos - checkout, add, delete, and rename.  Currently, I use an IDE or create scripts to do so for products' source I'm working on.  I think the best multi-repo-git-client, SmartGit, should have these features so users can stay using it instead of switching tools.

+3

Favorites branches

Anatoly 3 years ago updated 3 years ago 1

I propose to make it possible to add branches to favorites or pin them, since there are a lot of branches, but there are a couple of them that are most frequently used. Thank you.

+3

Conflict Resolver: show diverged commits (with their messages)

Will Hains 4 years ago updated by Thomas Singer 4 years ago 1

I use and love the “Conflict Resolver” window every day. It is extremely useful to have a 3-way diff like that. I love the “Base Changes” window as well.

But sometimes it is difficult to understand why the change in either side was made. My suggestion is to show, at the top of the left and right editors, a list of the commits since the common root. The abbreviated SHA1 (perhaps linked, so that clicking opens that commit in the Log view), author, date, and the first line of the message.

+3

Log, Graph: when the graph is filtered, highlight the matching text parts in commit message/author columns

Marc Strapetz 4 years ago updated by Chris Kline 4 years ago 1

Sometimes it's not immediately obvious why a commit has been matched by the Log Graph filter. Hence, it would be helpful to highlight the matching part of the text (e.g. in the commit message or author name) for quicker understanding. Highlighting could be done using a different text background color (like browsers do). The color should be configurable, at least using Low Level properties.

+3

Conflict solver: add the ability to manually select which conflict solver to use

Fabio Oleari 4 years ago updated by Marc Strapetz 4 years ago 0

I like the possibility to set different solvers for different file extensions, but sometimes I would like to manually select the solver.

I'm working with PLC code files and, for some of them, a specific graphical solver is provided. Sometimes (I have to say often), that solver fails, but on the low-level, those files are XML-like files, so a manual intervention is possible.

It would be great if you could provide a drop-down menu, with all solvers feasible for that file type and let the user choose.
Of course, the "Conflict Solver" command should behave as now, launching the default one.

Image 483

+3

Compare: check for modified file when saving

griscom 4 years ago updated by Marc Strapetz 4 years ago 0

SmartGit's diff tool is great, and I'll often use it to review and adjust changes before committing. However, SmartGit's editor has some significant limitations, and I'll do much of my work using BBEdit.

At times I'll have the same file open in both SmartGit and BBEdit. If I make a change with SmartGit, and then try to save a different change with BBEdit, BBEdit will warn me that the disk file has been changed. If I've changed a file with BBEdit, though, and then try to save a change with SmartGit, it'll happily tromp over the changed file.

Suggestion: when you're about to save a file, make sure it hasn't changed since it was read. If it has, show a warning.

+3

File Compare: option to Export as Patch

Bugged 4 years ago updated by Микола Моргун 4 years ago 1

Today it only has the option `Export as HTML`:

Image 467

The option Export as Patch, would create a diff file from the current file as:

```

From .... Mon Sep 17 00:00:00 2001
From: .....
Date: Sat, 29 Feb 2020 16:29:30 -0300

---
rslib/src/template.rs | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/rslib/src/template.rs b/rslib/src/template.rs
index cf38bce2..10a1b081 100644
--- a/rslib/src/template.rs
+++ b/rslib/src/template.rs
@@ -276,6 +276,7 @@ pub fn without_legacy_template_directives(text: &str) -> Cow {
impl ParsedTemplate<'_> {
/// true if provided fields are sufficient to render the template
pub fn renders_with_fields(&self, nonempty_fields: &HashSet<&str>) -> bool {
+ println!("nonempty_fields '{:?}'", nonempty_fields);
!template_is_empty(nonempty_fields, &self.0)
}
}
...

```

+3

Sparse Checkout

Derrick Southerland 4 years ago updated by Marc Strapetz 4 years ago 1

Please consider adding sparse checkout support once it becomes more stable in git.

https://git-scm.com/docs/git-sparse-checkout

The motivations for why someone would use this are well described here:

https://github.blog/2020-01-17-bring-your-monorepo-down-to-size-with-sparse-checkout/

Related topics:

+3

Stash: add stash index next to the name

Iulian Onofrei 5 years ago updated 5 years ago 2

Use case: If you use git stash list to search a particular stash, it is shown like stash@{24}: On brach: Stash name, and you currently have to manually count 24 stashes in SmartGit's list.

+3

Say which submodule is on a detached head state

Bugged 5 years ago updated by Patrick Lehmann 4 years ago 2

I had selected all files o my working tree and I hit the commit button. Then Smartgit said this:

Image 418

But I have no idea which one is the submodule which is on a detached head state.

Smartgit could at least inform from where it is coming from.