Here's the current script:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Fetch all TFS repos | |
git submodule foreach git tfs fetch | |
printf "\n" | |
# Show current banch and unmerged TFS commits for each subproject | |
git submodule foreach 'git rev-parse --abbrev-ref HEAD; git tree tfs/default --not HEAD' |