Commit Module
Contains helper functions which allow to commit to git repositories.
Functions and values
Function or value | Description |
Full Usage:
Commit.exec repositoryDir message
Parameters:
string
-
The git repository.
message : string
-
The commit message text.
|
|
Full Usage:
Commit.execExtended repositoryDir shortMessage extendedMessage
Parameters:
string
-
The git repository.
shortMessage : string
-
The commit short (title) message text.
extendedMessage : string
-
The commit extended (description) message text.
|
Commits all files in the given repository with the given short message along with an extended message
|