Support icon indicating copy to clipboard operation
Support copied to clipboard

Release terminal after launching GitFiend

Open ZaLiTHkA opened this issue 5 years ago • 2 comments

First off, thanks for making Git so sexy... This is by far the most beautiful looking Git GUI client I've ever seen.. :grin:

I noticed on Linux (in my case, the Debian-based ZorinOS) that using the gitfiend [path] CLI command holds onto the launched process until that GitFiend instance is closed.. Naturally, we can get around this with something as simple as gitfiend [path] &, so I took it one step further and added the following quick and dirty function to my bash environment:

gf () {
  gitfiend $1 & disown $!
}

This allows me to run gf . and open the current folder in GitFiend without holding onto my current terminal instance..

I'm not sure if Mac or Windows has the same issue, but I was wondering if there was perhaps something that could be done in the app project to get around this?

ZaLiTHkA avatar Jun 22 '20 10:06 ZaLiTHkA

First off, thanks for making Git so sexy... This is by far the most beautiful looking Git GUI client I've ever seen.. 😁

Thanks!

I'm not aware of any nice way of doing this from my end. I could do it with an extra launch step, though that would take extra time to start.

GitFiend avatar Jun 23 '20 09:06 GitFiend

Alrighty then, no worries.. Perhaps you could leave this issue open for the moment then?

It looks like GitFiend is packaged up as an Electron app, which I only know a little bit about, but I have been meaning to learn more for a while now. If this is the case, then I'll create a dummy project on my end a bit later and see what I find. (:

ZaLiTHkA avatar Jun 23 '20 12:06 ZaLiTHkA