I use git log, but I find it can only list logs under current branches, but I want to list all the loges for all the branches and sort by modified date, is that possible ? How to do that ?Thanks in advance !
相关问题
- I want to trace logs using a Macro multi parameter
- Error message 'No handlers could be found for
- convert logback.xml to log4j.properties
- Why does recursive submodule update from github fa
- Django management command doesn't show logging
相关文章
- 请教Git如何克隆本地库?
- how do I log requests and responses for debugging
- GitHub:Enterprise post-receive hook
- Git Clone Fails: Server Certificate Verification F
- SSIS solution on GIT?
- Is there a version control system abstraction for
- ssh: Could not resolve hostname git: Name or servi
- Cannot commit changes with gitextensions
git log --all
You can check this question to see if this begin to address your log level:
it should list all branches including remotes ones (if fetched)
You can try this commandline-fu, with
:git branch
orgit branch -a
(
is certainly what you need of you want to see the same branches than gitk)git branch -a
or:
(you can complete the format to show any data -- author, commit message, ... -- you need)
Note: As Jakub Narębski aptly comments:
git branch
is a porcelain command precisely because it meant for user, and not for scripting.As Eric Raymond puts it, It fits the well-established git design philosophy of separating content manipulation (plumbing) from presentation (porcelain).