소스 검색

Fixes #20: adds gitlens.advanced.gitignore.enabled

Nested .gitignore files can cause blame to fail with a repo within another repo
main
Eric Amodio 7 년 전
부모
커밋
d2ad2b6a0f
4개의 변경된 파일36개의 추가작업 그리고 19개의 파일을 삭제
  1. +3
    -0
      CHANGELOG.md
  2. +6
    -1
      package.json
  3. +3
    -0
      src/configuration.ts
  4. +24
    -18
      src/gitProvider.ts

+ 3
- 0
CHANGELOG.md 파일 보기

@ -1,6 +1,9 @@
---
## Release Notes
### 1.4.1
- Adds `gitlens.advanced.gitignore.enabled` to enable/disable .gitignore parsing. Addresses [#20](https://github.com/eamodio/vscode-gitlens/issues/20) - Nested .gitignore files can cause blame to fail with a repo within another repo
### 1.4.0
- Adds `alt+h` shortcut for the `gitlens.showQuickFileHistory` command

+ 6
- 1
package.json 파일 보기

@ -1,6 +1,6 @@
{
"name": "gitlens",
"version": "1.4.0",
"version": "1.4.1",
"author": {
"name": "Eric Amodio",
"email": "eamodio@gmail.com"
@ -226,6 +226,11 @@
"default": null,
"description": "Specifies a git path to use"
},
"gitlens.advanced.gitignore.enabled": {
"type": "boolean",
"default": true,
"description": "Specifies whether or not to parse the root .gitignore file for better performance (i.e. avoids blaming excluded files)"
},
"gitlens.advanced.maxQuickHistory": {
"type": "number",
"default": 200,

+ 3
- 0
src/configuration.ts 파일 보기

@ -92,6 +92,9 @@ export interface IAdvancedConfig {
};
debug: boolean;
git: string;
gitignore: {
enabled: boolean;
};
maxQuickHistory: number;
output: {
level: OutputLevel;

+ 24
- 18
src/gitProvider.ts 파일 보기

@ -45,6 +45,7 @@ enum RemoveCacheReason {
export default class GitProvider extends Disposable {
private _gitCache: Map<string, GitCacheEntry> | undefined;
private _cacheDisposable: Disposable | undefined;
private _repoPath: string;
private _uriCache: Map<string, UriCacheEntry> | undefined;
config: IConfig;
@ -58,27 +59,10 @@ export default class GitProvider extends Disposable {
constructor(private context: ExtensionContext) {
super(() => this.dispose());
const repoPath = context.workspaceState.get(WorkspaceState.RepoPath) as string;
this class="p">._repoPath = context.workspaceState.get(WorkspaceState.RepoPath) as string;
this._onConfigure();
this._gitignore = new Promise<ignore.Ignore | undefined>((resolve, reject) => {
const gitignorePath = path.join(repoPath, '.gitignore');
fs.exists(gitignorePath, e => {
if (e) {
fs.readFile(gitignorePath, 'utf8', (err, data) => {
if (!err) {
resolve(ignore().add(data));
return;
}
resolve(undefined);
});
return;
}
resolve(undefined);
});
});
const subscriptions: Disposable[] = [];
subscriptions.push(workspace.onDidChangeConfiguration(this._onConfigure, this));
@ -146,6 +130,28 @@ export default class GitProvider extends Disposable {
this._gitCache && this._gitCache.clear();
this._gitCache = undefined;
}
this._gitignore = new Promise<ignore.Ignore | undefined>((resolve, reject) => {
if (!config.advanced.gitignore.enabled) {
resolve(undefined);
return;
}
const gitignorePath = path.join(this._repoPath, '.gitignore');
fs.exists(gitignorePath, e => {
if (e) {
fs.readFile(gitignorePath, 'utf8', (err, data) => {
if (!err) {
resolve(ignore().add(data));
return;
}
resolve(undefined);
});
return;
}
resolve(undefined);
});
});
}
this.config = config;

불러오는 중...
취소
저장