|
@ -13,18 +13,18 @@ import { |
|
|
WorkspaceEdit, |
|
|
WorkspaceEdit, |
|
|
} from 'vscode'; |
|
|
} from 'vscode'; |
|
|
import { getNonce } from '@env/crypto'; |
|
|
import { getNonce } from '@env/crypto'; |
|
|
import { ShowQuickCommitCommand } from '../commands'; |
|
|
|
|
|
import { configuration } from '../configuration'; |
|
|
|
|
|
import { CoreCommands } from '../constants'; |
|
|
|
|
|
import { Container } from '../container'; |
|
|
|
|
|
import { RepositoryChange, RepositoryChangeComparisonMode } from '../git/models'; |
|
|
|
|
|
import { Logger } from '../logger'; |
|
|
|
|
|
import { Messages } from '../messages'; |
|
|
|
|
|
import { executeCoreCommand } from '../system/command'; |
|
|
|
|
|
import { gate } from '../system/decorators/gate'; |
|
|
|
|
|
import { debug } from '../system/decorators/log'; |
|
|
|
|
|
import { join, map } from '../system/iterable'; |
|
|
|
|
|
import { normalizePath } from '../system/path'; |
|
|
|
|
|
|
|
|
import { ShowQuickCommitCommand } from '../../commands'; |
|
|
|
|
|
import { configuration } from '../../configuration'; |
|
|
|
|
|
import { CoreCommands } from '../../constants'; |
|
|
|
|
|
import { Container } from '../../container'; |
|
|
|
|
|
import { RepositoryChange, RepositoryChangeComparisonMode } from '../../git/models'; |
|
|
|
|
|
import { Logger } from '../../logger'; |
|
|
|
|
|
import { Messages } from '../../messages'; |
|
|
|
|
|
import { executeCoreCommand } from '../../system/command'; |
|
|
|
|
|
import { gate } from '../../system/decorators/gate'; |
|
|
|
|
|
import { debug } from '../../system/decorators/log'; |
|
|
|
|
|
import { join, map } from '../../system/iterable'; |
|
|
|
|
|
import { normalizePath } from '../../system/path'; |
|
|
import { |
|
|
import { |
|
|
Author, |
|
|
Author, |
|
|
Commit, |
|
|
Commit, |
|
@ -40,7 +40,7 @@ import { |
|
|
RebaseEntry, |
|
|
RebaseEntry, |
|
|
RebaseEntryAction, |
|
|
RebaseEntryAction, |
|
|
RebaseState, |
|
|
RebaseState, |
|
|
} from './protocol'; |
|
|
|
|
|
|
|
|
} from '../protocol'; |
|
|
|
|
|
|
|
|
let ipcSequence = 0; |
|
|
let ipcSequence = 0; |
|
|
function nextIpcId() { |
|
|
function nextIpcId() { |