Created
July 23, 2024 13:38
-
-
Save dongyuwei/82e08826e59cd07065ba213a4adf037a to your computer and use it in GitHub Desktop.
concat-files-in-git-repo.sh [HEAD or comit-hash]
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/bash | |
COMMIT_HASH=$1 | |
git ls-tree --full-tree -r --name-only $COMMIT_HASH | while read -r file; do | |
echo "--- $file ---" >> all_files_contents.txt | |
git show $COMMIT_HASH:$file >> all_files_contents.txt | |
echo "" >> all_files_contents.txt | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
concat all files in one git repo into one big file, then can feed it to AI(ChatGPT/Claude/DeepSeek)
Usage: concat-files-in-git-repo.sh [HEAD or comit-hash]