Re: [Orgmode] Org and git blame integration?

2009-12-03 Thread Martin Pohlack
Hi Jason, Jason Dunsmore wrote: [...] git blame todo.org|cut -c29-|cut -c 20-25 --complement|sort -n|less -S I made a couple of bash functions based on this: function org_history () { git blame $1|cut -c29-|cut -c 20-25 --complement|sort -n|less -S } # Limit the output to Org

[Orgmode] Org and git blame integration?

2009-12-02 Thread Jason Dunsmore
Hi, I used to use state change logging (configured with ! in org-todo-keywords), but I didn't like the way it cluttered my org files and I rarely referred to the logged times. As an alternative, I found the git-blame utility to be useful for finding out stuck projects and tasks in my Org files.