FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

Commit Module

Contains helper functions which allow to commit to git repositories.

Functions and values

Function or value Description

Commit.exec repositoryDir message

Full Usage: Commit.exec repositoryDir message

Parameters:
    repositoryDir : string - The git repository.
    message : string - The commit message text.

Commits all files in the given repository with the given message

repositoryDir : string

The git repository.

message : string

The commit message text.

Commit.execExtended repositoryDir shortMessage extendedMessage

Full Usage: Commit.execExtended repositoryDir shortMessage extendedMessage

Parameters:
    repositoryDir : 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

repositoryDir : string

The git repository.

shortMessage : string

The commit short (title) message text.

extendedMessage : string

The commit extended (description) message text.