Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found
here.
If the API is already migrated you can check here if exists in a module.
More information regarding the migration can be found here
OBSOLETE
Use Fake.Tools.Git.Rebase instead
Rebase
Contains helper functions which allow to deal with git rebase.
Functions and values
Function or value | Description |
abort(repositoryDir)
Signature: repositoryDir:string -> unit
Attributes: [<Obsolete("Use Fake.Tools.Git.Rebase instead")>] |
OBSOLETEUse Fake.Tools.Git.Rebase instead Restore the original branch and abort the rebase operation. |
continueRebase(repositoryDir)
Signature: repositoryDir:string -> unit
Attributes: [<Obsolete("Use Fake.Tools.Git.Rebase instead")>] |
OBSOLETEUse Fake.Tools.Git.Rebase instead Restart the rebasing process after having resolved a merge conflict. |
rebaseOrFallbackOnMerge(...)
Signature: repositoryDir:string -> onTopOfBranch:string -> bool
Attributes: [<Obsolete("Use Fake.Tools.Git.Rebase instead")>] |
OBSOLETEUse Fake.Tools.Git.Rebase instead Tries to rebase on top of the given branch. If the rebasing process fails a normal merge will be started. Returns if the process used merge instead of rebase. |
skip(repositoryDir)
Signature: repositoryDir:string -> unit
Attributes: [<Obsolete("Use Fake.Tools.Git.Rebase instead")>] |
OBSOLETEUse Fake.Tools.Git.Rebase instead Restart the rebasing process by skipping the current patch. |
start repositoryDir onTopOfBranch
Signature: repositoryDir:string -> onTopOfBranch:string -> unit
Attributes: [<Obsolete("Use Fake.Tools.Git.Rebase instead")>] |
OBSOLETEUse Fake.Tools.Git.Rebase instead Performs a rebase on top of the given branch with the current branch |