Tämä sivusto toimii paremmin JavaScriptillä.
Etusivu
Tutki
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Tarkkaile
1
Äänestä
0
Fork
0
Koodi
Ongelmat
0
Pull-pyynnöt
0
Julkaisut
0
Wiki
Toiminta
Selaa lähdekoodia
Fixes
#310
- quote path
main
Eric Amodio
6 vuotta sitten
vanhempi
3cafcf3073
commit
7c360836f3
2 muutettua tiedostoa
jossa
2 lisäystä
ja
1 poistoa
Jaettu näkymä
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
CHANGELOG.md
+1
-1
src/views/explorerCommands.ts
+ 1
- 0
CHANGELOG.md
Näytä tiedosto
@ -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
Näytä tiedosto
@ -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
)
;
}
}
Kirjoita
Esikatselu
Ladataan…
Peruuta
Tallenna