mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
21 lines
512 B
Markdown
21 lines
512 B
Markdown
# git repl
|
|
|
|
> Git REPL (read-evaluate-print-loop) - 인터랙티브 Git 쉘.
|
|
> `git-extras`의 일부.
|
|
> 더 많은 정보: <https://github.com/tj/git-extras/blob/master/Commands.md#git-repl>.
|
|
|
|
- 인터랙티브 Git 쉘 시작:
|
|
|
|
`git repl`
|
|
|
|
- 인터랙티브 Git 쉘에서 Git 명령 실행:
|
|
|
|
`{{git_하위_명령}} {{명령_인수}}`
|
|
|
|
- 인터랙티브 Git 쉘에서 외부 (Git 이외의) 명령 실행:
|
|
|
|
`!{{명령}} {{명령_인수}}`
|
|
|
|
- 인터랙티브 Git 쉘 종료 (또는 `<Ctrl d>` 누르기):
|
|
|
|
`exit`
|