From 91a54757de2165cf40f62a86180af2f5602ee1a8 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Wed, 11 Jul 2018 02:24:46 -0400 Subject: [PATCH] Fixes #442 - File status fails if name (or path) starts with - --- CHANGELOG.md | 1 + src/git/git.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3628229..63c985c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ### Fixed - Fixes [#436](https://github.com/eamodio/vscode-gitlens/issues/436) - Copy to clipboard not working +- Fixes [#442](https://github.com/eamodio/vscode-gitlens/issues/442) - GitLens File History fails if name (or path) starts with - ## [8.4.1] - 2018-06-19 ### Fixed diff --git a/src/git/git.ts b/src/git/git.ts index 4a86a40..d051653 100644 --- a/src/git/git.ts +++ b/src/git/git.ts @@ -726,6 +726,7 @@ export class Git { 'color.status=false', 'status', porcelain, + '--', file ); }