move git lib over to extension

This commit is contained in:
Joao Moreno
2016-11-28 17:18:46 +01:00
parent 1f38d8e8da
commit dd043965ad
10 changed files with 669 additions and 75 deletions

View File

@@ -9,6 +9,9 @@ import { scm, ExtensionContext, workspace, Uri, window, Disposable } from 'vscod
import * as path from 'path';
import { findGit, Git } from './git';
import { registerCommands } from './commands';
import * as nls from 'vscode-nls';
nls.config();
export function log(...args: any[]): void {
console.log.apply(console, ['git:', ...args]);