+6
"Change Sets" feature as found in SVN
More info: http://www.syntevo.com/doc/display/SU/Change+Sets
I know there's not a Git feature exactly like SVN's "Changelist", so perhaps that is why SmartGit doesn't have this feature. However, IntelliJ provides its own changelist functionality for Git projects, so I'm hoping there's a way to do this within SmartGit.
I often have several tickets/tasks pending at the same time, so being able to group change files by some label (e.g., ticket number) makes managing commits much easier.
Customer support service by UserEcho
I'll add another use-case for this.
Our project regularly has tracked files which change as a result of simply running the application. The reason that they change are often outside of our control and are due to some quirk in whatever version of Unity we happen to currently be using. The changes are meaningless and therefore we don't want to muddy up their history by actually committing them.
So, in SmartSvn, I would plop these annoying files into a Change Set called something like "TempIgnore" simply to sequester them away from meaningful changes..
If the files are changed, but should be treated as unchanged, please select the files and invoke Local | Toggle "Assume Unchanged".
This is exactly the issue myself and quite a few coworkers are running into. we are losing work because every change requires sifting through tens, or hundreds of "junk files" in order to find the legitimate work worth committing. this exhausting process that must be repeated every time that unity is brought to the foreground\for every commit.
Evan, here is my general workflow for dealing with this:
Luckily for me, it is usually only a handful of files, not hundreds, so you'll have more work cut out for you...don't think even change sets would solve that.
The reason I chose to use "Skip Worktree" over "Assume Unchanged" is based on guidance from people in the #git IRC channel when I was asking about the difference...they suggested to stay away from Assume Unchanged if the files are actually changing (which they are).