git-lfs/git/git_nix.go
Artem V. Navrotskiy ab20caeec1 Windows: hide git application window.
Original problem (https://code.google.com/p/tortoisegit/issues/detail?id=2518):

 1. Install Git LFS (https://git-lfs.github.com/)
   * Download and unpack archive;
   * Put git-lfs.exe on any avaialble in PATH directory;
   * Run "git lfs init"
 2. Clone repository from: https://github.com/bozaro/test
 3. Change image "tux.png"
 4. Show "Git Commit" window

On showing "Git Commit" window you will see black window blink for each changed LFS file (twice in this case).

You also will see black window blink on refreshing change list by F5 key.
2015-06-17 13:14:36 +03:00

14 lines
288 B
Go

// +build !windows
// Package git contains various commands that shell out to git
package git
import (
"os/exec"
)
// execCommand is a small platform specific wrapper around os/exec.Command
func execCommand(name string, arg ...string) *exec.Cmd {
return exec.Command(name, arg...)
}