-
-
Notifications
You must be signed in to change notification settings - Fork 364
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy Production Code for Commit e9abb9c 🚀
- Loading branch information
Showing
362 changed files
with
3,307 additions
and
11,697 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
import { ActionInterface } from './constants'; | ||
/** | ||
* Git checkout command. | ||
*/ | ||
export declare class GitCheckout { | ||
/** | ||
* @param orphan - Bool indicating if the branch is an orphan. | ||
*/ | ||
orphan: boolean; | ||
/** | ||
* @param commitish - The commitish to check out. | ||
*/ | ||
commitish?: string | null; | ||
/** | ||
* @param branch - The branch name. | ||
*/ | ||
branch: string; | ||
constructor(branch: string); | ||
/** | ||
* @param branch - The branch name. | ||
* @param commitish - The commitish to check out. | ||
*/ | ||
constructor(branch: string, commitish?: string); | ||
/** | ||
* Returns the string representation of the git checkout command. | ||
*/ | ||
toString(): string; | ||
} | ||
/** | ||
* Generate the worktree and set initial content if it exists | ||
* Generates a git worktree. | ||
* @param action - The action interface. | ||
* @param worktreedir - The worktree directory. | ||
* @param branchExists - Bool indicating if the branch exists. | ||
*/ | ||
export declare function generateWorktree(action: ActionInterface, worktreedir: string, branchExists: unknown): Promise<void>; | ||
export declare function generateWorktree(action: ActionInterface, worktreedir: string, branchExists: boolean | number): Promise<void>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.