Using git, if I make git branch --all I can see all remotes branches.
It will be possible to get more information about this remote branches,
for example the “creation date”, “last edit date” and the “creation user” by command line?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TL;DR
No. You need to fetch repository objects to view history information.
How Git Works
Git history is stored in commit objects, but branches are just pointers to commits. (This is a slight simplication, but true for our purposes.) In particular, a remote ref is just a pointer to the head of some branch; it doesn’t contain any history to display.
Git need to retrieve the repository objects for that branch in order to calculate history at run-time. So, until you run
git fetchfor a given branch, there’s nothing for Git to look at to give you that information.