Showing posts with label log. Show all posts
Showing posts with label log. Show all posts

Sunday, March 7, 2010

Cron log in Ubuntu

* Edit /etc/syslog.conf and uncomment the line starting with cron.*
* touch /var/log/cron.log
* Run /etc/init.d/rsyslog restart
* Run /etc/init.d/cron restart

Thursday, February 4, 2010

Review git commits in terminal


git log -u HEAD^..HEAD

Wednesday, November 11, 2009

Show only difference in commit logs between 2 git branches


git log A_BRANCH..ANOTHER_BRANCH

# with diff output
git log -p A_BRANCH..ANOTHER_BRANCH

Thursday, October 8, 2009

Check git log for a particular branch


# To changelog for upstream origin/master changes
git fetch origin
git log origin/master