Closed lonix1 closed 2 years ago
Is it possible to perform GitCommit() without the name and email?
GitCommit()
The same as is possible in the shell - it would use the defaults for the repo.
i.e. in the shell I can just do this: $ git commit -m message
$ git commit -m message
var name = GitConfigGet<string>(repoDirectory, "user.name")); var email = GitConfigGet<string>(repoDirectory, "user.email"); GitCommit(repoDirectory, name, email, "message");
Is it possible to perform
GitCommit()
without the name and email?The same as is possible in the shell - it would use the defaults for the repo.
i.e. in the shell I can just do this:
$ git commit -m message