1package git
2
3import "github.com/aymanbagabas/git-module"
4
5// RunInDirOptions are options for RunInDir.
6type RunInDirOptions = git.RunInDirOptions
7
8// NewCommand creates a new git command.
9func NewCommand(args ...string) *git.Command {
10 return git.NewCommand(args...)
11}