How to stop git-bash shell from waiting for process to finish?

In Bash, you can append & to run a command in the background.

In order to suppress its shell output (if any), you can also redirect its STDERR and STDOUT to /dev/null.

So, use this:

git-bash & > /dev/null 2>&1

When you close the window, the command should also exit in the background.