Options for further refining the git stash command.

interface Stash {
    action?: "push" | "apply" | "pop" | "list" | "drop" | "clear";
    id?: string;
    message?: string;
}

Properties

Properties

action?: "push" | "apply" | "pop" | "list" | "drop" | "clear"

The kind of stash action.

id?: string

The stash id. This is an optional argument for actions of kind 'apply', 'pop' and 'drop'.

message?: string

The stash message. This is an optional argument for the push action.