| 89 | |
| 90 | If you want to have an overview of the development history, refer to [http://stackoverflow.com/questions/1057564/pretty-git-branch-graphs - this discussion on stack overflow] about generating pretty pictures of the same. |
| 91 | |
| 92 | For the impatient living on Unix, follow Slipp D. Thompson's idead and edit (or create) your '~/.gitconfig' file, adding the following command aliases: |
| 93 | |
| 94 | {{{ |
| 95 | [alias] |
| 96 | lg1 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all |
| 97 | lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all |
| 98 | lg = !"git lg1" |
| 99 | }}} |
| 100 | |
| 101 | Then run |
| 102 | |
| 103 | {{{ |
| 104 | git lg |
| 105 | }}} |
| 106 | |
| 107 | inside 'boinc_repo' for a quick text-only history dump: |
| 108 | |
| 109 | {{{ |
| 110 | * 403afa4 - (14 hours ago) client: work fetch policy tweak - David Anderson (HEAD, origin/master, origin/HEAD, master) |
| 111 | * 28f7f95 - (17 hours ago) client: Default to /usr/bin when looking for VboxManage. - Rom Walton |
| 112 | * b4f7e33 - (18 hours ago) client, Android: run CPU-intensive apps in background mode - David Anderson |
| 113 | * b0504e9 - (24 hours ago) Mac: script builds boinc_zip library when building other BOINC libraries - Charlie Fenton |
| 114 | * edc96a2 - (24 hours ago) Mac: update build scripts for OS 10.9 - Charlie Fenton |
| 115 | * 0d04b84 - (24 hours ago) Mac: Update build script for wxWidgets 3.0.0 - Charlie Fenton |
| 116 | * 04e8f00 - (30 hours ago) client, Win: when running GPU detect, use "boinc.exe" rather than "boinc" on cmdline. - David Anderson |
| 117 | * be2f175 - (2 days ago) DOC: Add entries for MIPS and x86 for Android. - Rom Walton |
| 118 | * cc32c51 - (2 days ago) Merge branch 'master' of ssh://isaac.ssl.berkeley.edu/boinc-v2 - Rom Walton |
| 119 | |\ |
| 120 | | * 6d78613 - (2 days ago) API: make boinc_api_fortran.cpp compile - David Anderson |
| 121 | | * 36460bc - (2 days ago) Compile fixes for Ubuntu - David Anderson |
| 122 | * | 8bb3af6 - (2 days ago) DOC: Update android client to 7.2.41. - Rom Walton |
| 123 | |/ |
| 124 | * 9b041f7 - (2 days ago) VBOX: Fix case of virtualbox and vboxheadless for platforms that are case sensitive. The code... |
| 125 | * 9220ceb - (3 days ago) Admin web: deprecate problem_host.php, which sends a confusing email to user - David Anderson |
| 126 | }}} |