-
-
Save jjulian/142125 to your computer and use it in GitHub Desktop.
Use with 'rake time' to mark the beginning of your work day
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# save to script/work in a rails project | |
# run it once, you will get an error 'script/work.tracker' did not match any file(s) known to git | |
# run git add script/work.tracker, and you are ready to go | |
# script/work at the beginning of the day to log a commit that says "I've begun working" | |
# use with the time tracker rake task: http://gist.github.com/141886 | |
date "+%s" > script/work.tracker | |
git commit script/work.tracker -m "!!!starting work!!!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment