summaryrefslogtreecommitdiff
path: root/src/bin/my-git-status-recursive
blob: 368e222cec7d92a02466fc2723b83ffd15f43437 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

find -type d -name ".git" \
	| while read x ; do \
		x=`dirname $x`; \
		echo -e "\n-------------------------------------------------------------------------------\n$x"; \
		pushd $x; \
		git status;
		popd > /dev/null;
	done