このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
プルリクエスト
0
リリース
0
Wiki
アクティビティ
ソースを参照
Fixes
#310
- quote path
main
Eric Amodio
6年前
親
3cafcf3073
コミット
7c360836f3
2個のファイルの変更
、
2行の追加
、
1行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-0
CHANGELOG.md
+1
-1
src/views/explorerCommands.ts
+ 1
- 0
CHANGELOG.md
ファイルの表示
@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [
#314
](
https://github.com/eamodio/vscode-gitlens/issues/314
) - Toggle line annotation doesn't work properly
- Fixes [
#310
](
https://github.com/eamodio/vscode-gitlens/issues/310
) - "via Terminal" commands need quoting around work directory
## [8.1.1] - 2018-03-12
### Fixed
+ 1
- 1
src/views/explorerCommands.ts
ファイルの表示
@ -369,6 +369,6 @@ export class ExplorerCommands extends Disposable {
const
terminal
=
this
.
ensureTerminal
(
)
;
terminal
.
show
(
false
)
;
terminal
.
sendText
(
`
git -C
${
cwd
}
${
command
}
`
,
false
)
;
terminal
.
sendText
(
`
git -C
"
${
cwd
}
"
${
command
}
`
,
false
)
;
}
}
書き込み
プレビュー
読み込み中…
キャンセル
保存