> Does it make a difference how you invoke "git fetch"? From a quick look at > the code, "git fetch" with no remote or refspec should display progress data, > but if you specify "--all" or a remote and refspec then it won't. Thanks for your prompt response. However, it doesn't make any difference. The behavior remains the same even without specifying a refspec. For example: $ git pull remote: Counting objects: 5, done. remote: Compressing objects: 100% (3/3), done. remote: Total 3 (delta 1), reused 0 (delta 0) Unpacking objects: 100% (3/3), done. $ git fetch remote: Counting objects: 5, done. remote: Compressing objects: 100% (3/3), done. remote: Total 3 (delta 1), reused 0 (delta 0) Unpacking objects: 100% (3/3), done. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html