Il sito funziona meglio con JavaScript.
Home
Esplora
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Fixes
#310
- quote path
main
Eric Amodio
6 anni fa
parent
3cafcf3073
commit
7c360836f3
2 ha cambiato i file
con
2 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-0
CHANGELOG.md
+1
-1
src/views/explorerCommands.ts
+ 1
- 0
CHANGELOG.md
Vedi File
@ -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
Vedi File
@ -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
)
;
}
}
Scrivi
Anteprima
Caricamento…
Annulla
Salva