1GIT-REPL(1) Git Extras GIT-REPL(1)
2
3
4
6 git-repl - git read-eval-print-loop
7
9 git-repl
10
12 Git read-eval-print-loop. Let´s you run git commands without typing
13 ´git´.
14
15 Commands can be prefixed with an exclamation mark (!) to be interpreted
16 as a regular command.
17
18 Type exit or quit to end the repl session.
19
21 <command>
22
23 Interpreted as git <command>.
24
25 !<command>
26
27 Interpreted as <command> (not through git).
28
29 ls
30
31 Equivalent of ´git ls-files´.
32
33 exit|quit
34
35 Ends the repl session.
36
38 $ git repl
39 git version 2.9.2
40 git-extras version 3.0.0
41 type ´ls´ to ls files below current directory,
42 ´!command´ to execute any command or just ´subcommand´ to execute any git subcommand
43
44 git (master)> ls-files
45 History.md
46 Makefile
47 Readme.md
48 bin/git-changelog
49 bin/git-count
50 bin/git-delete-branch
51 bin/git-delete-tag
52 bin/git-ignore
53 bin/git-release
54
55 git (master)> !echo Straight from the shell!
56 Straight from the shell!
57
58 git (master)> quit
59
61 Written by Tj Holowaychuk <tj@vision-media.ca>
62
64 <https://github.com/tj/git-extras/issues>
65
67 <https://github.com/tj/git-extras>
68
69
70
71 October 2017 GIT-REPL(1)