summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJed Brown <jed@59A2.org>2014-06-02 22:20:28 +0200
committerJed Brown <jed@59A2.org>2014-06-02 22:20:28 +0200
commitad8d77fe8479ddbbd752c3162fec28081e49cfc4 (patch)
treec8dc59acb97ee56fe6954916203040888a2f17fe
parentc061c140f9bb4959a80692b8bf044c2f75610781 (diff)
downloadgit-fat-ad8d77fe8479ddbbd752c3162fec28081e49cfc4.tar.gz
referenced_objects: make comment more precise
-rwxr-xr-xgit-fat2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fat b/git-fat
index bb01580..f29b1f6 100755
--- a/git-fat
+++ b/git-fat
@@ -303,7 +303,7 @@ class GitFat(object):
output.close()
# ...`cat-file --batch` provides full contents of git-fat candidates in bulk
p3 = subprocess.Popen(['git','cat-file','--batch'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
- # Stream data from p1 -> p2 -> p3 in the background
+ # Stream data: p1 | cut_thread | p2 | filter_thread | p3
cut_thread = threading.Thread(target=cut_sha1hash, args=(p1.stdout, p2.stdin))
filter_thread = threading.Thread(target=filter_gitfat_candidates, args=(p2.stdout, p3.stdin))
cut_thread.start()