You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rebase.abort().then(function(result){// Use result});
Returns
Number
Zero on success; GIT_ENOTFOUND if a rebase is not in progress,
-1 on other errors. |
Rebase#commit Async
rebase.commit(author,committer,message_encoding,message).then(function(oid){// Use oid});
| Parameters | Type |
| --- | --- | --- |
| author | Signature | The author of the updated commit, or NULL to keep the author from the original commit |
| committer | Signature | The committer of the rebase |
| message_encoding | String | The encoding for the message in the commit, represented with a standard encoding name. If message is NULL, this should also be NULL, and the encoding from the original commit will be maintained. If message is specified, this may be NULL to indicate that "UTF-8" is to be used. |
| message | String | The message for this commit, or NULL to use the message from the original commit. |