mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
4 lines
152 B
Text
4 lines
152 B
Text
|
#!/bin/bash
|
||
|
|
||
|
for f in $(git status --porcelain|grep '^UU'|awk '{print $2}'); do echo "$f"; git --no-pager blame -L '/^<<<</,/^>>>>/' -- $f; echo; done;
|