Enumeration StashCommand

StashCommand defines the subcommands recognized by the Git stash command.

Enumeration Members

Enumeration Members

Apply: "apply"

Like Pop, but does not remove the state from the stash list.

Branch: "branch"

Creates and checks out a new branch.

Clear: "clear"

Remove all the stash entries.

Create: "create"

Creates a stash entry and return its object name without storing it anywhere in the ref namespace. See also Store.

Drop: "drop"

Removes a single stash entry from the list.

List: "list"

Lists the stash entries.

Pop: "pop"

Removes a single stashed state from the stash.

Push: "push"

Saves local modifications to a new stash entry.

Show: "show"

Shows the changes recorded in the stash entry as a diff.

Store: "store"

Store a given stash created via Create.