git openlast
最後のコミットを表示し、追加または変更されたファイルのリストを取得し、テキストファイルでのみフィルタリングし、最後にエディタで開くコマンドが必要です。
これまで私は次のことをしました。
git show --stat HEAD
read -p "Open in Vim tabs? (Y/n)" -n 1 -r
if [[ -z $REPLY || $REPLY =~ [Yy] ]]; then
vim -p $(git diff --diff-filter=AM --ignore-submodules --name-only HEAD^)
fi
欠点は、前のコミットでバイナリを追加または変更すると、エディタ(この場合はVim)でバイナリが開くことです。コマンド出力のリストを取得git diff
してバイナリを削除する方法はありますか?
答え1
これをパイプしてバイナリをフィルタリングするためにxargs
使用できます。grep -Il ""
git diff --diff-filter=AM --ignore-submodules --name-only HEAD^ | \
xargs grep -Il ""
git openfiles
コマンド例
#!/bin/bash
git show --stat HEAD
files=($(git diff --diff-filter=AM --ignore-submodules --name-only HEAD^ | xargs grep -Il ""))
read -p "Open ${#files[@]} files in Vim tabs? (Y/n)" -n 1 -r
if [[ -z $REPLY || $REPLY =~ [Yy] ]]; then
exec vim -p ${files[@]}
else
exit 1
fi
答え2
ファイル拡張子がある場合は、Gawkを使用してリストから目的のファイルを選択できます。例には拡張子「.txt」と「.jpeg」があります。 Git出力を編集するための正規表現です。
git show --stat HEAD
commit ec07d8306e9e61894d18e6f8d6ea1e5d650c0712
Author: root <root@somebox>
Date: Thu Dec 17 17:19:30 2015 -0500
test project commit
add email addresses.jpeg | Bin 0 -> 127688 bytes
allpermissions.jpeg | Bin 0 -> 126620 bytes
error.jpeg | Bin 0 -> 227469 bytes
sonic_boom.jpeg | Bin 0 -> 112958 bytes
test1.jpeg | Bin 0 -> 96857 bytes
test1.txt | 1 +
test2.txt | 1 +
top_cipher_test_results.jpeg | Bin 0 -> 149293 bytes
Gawkはバイナリ.jpeg拡張ファイルを削除します。
git show --stat HEAD|awk '{ if($1 ~ /.jpeg/)print $1}'
必要に応じて.txtと.jpegを含めます。
git show --stat HEAD|awk '{ if($1 ~ /.jpeg|.txt/)print $1}'