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

Stash Module

Contains helper functions which allow to deal with git stash.

Functions and values

Function or value Description

Stash.pop repositoryDir

Full Usage: Stash.pop repositoryDir

Parameters:
    repositoryDir : string - The git repository.

Remove a single stashed state from the stash list and apply it on top of the current working tree state, i.e., do the inverse operation of git stash save. The working directory must match the index.

repositoryDir : string

The git repository.

Stash.push repositoryDir message

Full Usage: Stash.push repositoryDir message

Parameters:
    repositoryDir : string - The git repository.
    message : string - The stash message

Stash the changes in a dirty working directory away.

repositoryDir : string

The git repository.

message : string

The stash message