-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
53 lines (35 loc) · 1.29 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
GIT-OPEN(1) Extension to git GIT-OPEN(1)
NAME
git-open - Open relevant git files in your favorite editor
SYNOPSIS
git open [OPTIONS]...
DESCRIPTION
Open staged, changed or committed files in your git editor.
Options can be combined as to open both staged, changed and committed
files.
OPTIONS
-s, --staged
open staged files
-c, --changed
open changed files
-C, --committed
open files from the latest commit
-n, --dry-run
do not actually open any files; just show what would have been
opened
-h, --help
show help
VARIABLES
GIT_OPEN_EDITOR
Text editor for opening the files. The value is meant to be
interpreted by the shell when it is used.
The order of preference is the $GIT_OPEN_EDITOR environment variable,
then open.editor configuration, then the rules from git-var(1)
applies
AUTHOR
Written by Andreas Louv <andraes@louv.dk>
REPORTING BUGS
Use the GitHub bug tracker <https://github.com/andlrc/git-open/issues/>
SEE ALSO
git(1), git-var(1)
03/22/2022 GIT-OPEN(1)