We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f38993 commit 766d3ddCopy full SHA for 766d3dd
1 file changed
lib/repository.js
@@ -449,9 +449,13 @@ Repository.prototype.continueRebase = function(
449
})
450
.then(function(_rebase) {
451
rebase = _rebase;
452
- return rebase.commit(null, signature);
+ return rebase.commit(null, signature)
453
+ .catch(function() {
454
+ // we are ignoring errors. This is to prevent issues caused by making this async
455
+ return 0;
456
+ });
457
- .then(function(oid) {
458
+ .then(function() {
459
return performRebase(
460
repo,
461
rebase,
0 commit comments