-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitopen
More file actions
executable file
·32 lines (24 loc) · 749 Bytes
/
gitopen
File metadata and controls
executable file
·32 lines (24 loc) · 749 Bytes
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
#!/usr/bin/env bash
# Opens all files from a git diff or a git show in vim
# Source: https://gist.github.com/arnorhs/1517095
# Usage:
# gitopen -- opens all added files that have changed since HEAD
# gitopen diff HEAD -- these are the default parameters
# gitopen diff master -- opens files that have changed from master
# gitopen show -- opens files that were changed in the last revision (HEAD)
# gitopen show HEAD -- default param, does the same
# gitopen show 4b3ca34 -- opens a particular REV
COMMAND=diff
REV=HEAD
if [ $1 ]; then
COMMAND=$1
fi
if [ $2 ]; then
REV=$2
fi
if [ $COMMAND = "show" ]; then
PARAM='--pretty=format: --name-only'
else
PARAM='--name-only'
fi
git $COMMAND $PARAM $REV | xargs $EDITOR