12 lines
351 B
Bash
Executable File
12 lines
351 B
Bash
Executable File
#
|
|
# view the changes in the current workspace for files NOT listed
|
|
# in filelist.txt; this is a good way to make sure you're not
|
|
# forgetting something that should be in filelist.txt before you
|
|
# check it in
|
|
# zzz 2008-10
|
|
#
|
|
mtn dif `cat filelist.txt` > out.diff
|
|
mtn dif > all.diff
|
|
diff all.diff out.diff | cut -c3- > missing.diff
|
|
$EDITOR missing.diff
|