log

satya - 4/11/2018, 4:57:09 PM

git log shows the list of branches and the commits on those branches.

git log shows the list of branches and the commits on those branches.

satya - 4/11/2018, 4:58:04 PM

For example it paints a picture of the following

satya - 10/23/2019, 2:23:31 PM

This is documented here

This is documented here

satya - 10/23/2019, 2:36:30 PM

Find out what is going on at the server


//One line commit history
git log origin/master --oneline

//Only show the last 3
git log origin/master --oneline --maxcount=3

//From the last 4 days
git log origin/master --oneline --max-count=3 --since="4 days ago"

//2 weeks ago
git log origin/master --oneline --max-count=3 --since="2 weeks ago"

satya - 10/23/2019, 2:37:11 PM

I take it one can find what files have changed since last as well

I take it one can find what files have changed since last as well

satya - 10/23/2019, 2:51:58 PM

This distinction does work


git log master

Vs

git log origin/master

satya - 10/23/2019, 3:08:23 PM

git log commit difference between local and remote

git log commit difference between local and remote

Search for: git log commit difference between local and remote

satya - 10/23/2019, 3:11:08 PM

Commit differences between local and remote

Commit differences between local and remote

satya - 10/23/2019, 3:18:03 PM

How to compare a local git branch with its remote branch? SOF

How to compare a local git branch with its remote branch? SOF