Horje
Commit history Code Example
how to see all commits in git
$ git log --pretty=format:"%h - %an, %ar : %s"
ca82a6d - Scott Chacon, 6 years ago : Change version number
085bb3b - Scott Chacon, 6 years ago : Remove unnecessary test
a11bef0 - Scott Chacon, 6 years ago : Initial commit
Source: git-scm.com
git log one line
git log --oneline
git log in command line pretty view
$ git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit

* 3396763 - (HEAD, origin/master, master) Add twitter link (4 days ago) <Mattias Geniar>
* c73bbc9 - add facebook link (6 days ago) <Mattias Geniar>
* cb555df - More random values (6 days ago) <Mattias Geniar>
*   60e7bbf - Merge pull request #1 from TSchuermans/patch-1 (7 days ago) <Mattias Geniar>
|\
| * 8044a8f - Typo fix (7 days ago) <Tom Schuermans>
|/
Source: ma.ttias.be
get all changes on commit name
$ git diff-tree --no-commit-id --name-only -r bd61ad98
index.html
javascript/application.js
javascript/ie6.js
Commit history
$ git clone [https://github.com/loverajoel/jstips.git](https://github.com/loverajoel/jstips.git)   # You will need a GitHub account for this to work  
$ cd jstips   # changing your directory into the one you just downloaded  
$ git log --graph --pretty=tformat:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%an %cr)%Creset' --abbrev-commit --date=relative
git history
$ git log
# git log lists the commits made in that repository in reverse chronological order




Shell

Related
find jpg or png Code Example find jpg or png Code Example
run speedtest command line mac Code Example run speedtest command line mac Code Example
manjaro linux system information Code Example manjaro linux system information Code Example
kali metapackages detail Code Example kali metapackages detail Code Example
centos open port pid Code Example centos open port pid Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14