https://github.com/laino/check
Simple timetracking using git + bash.
https://github.com/laino/check
Last synced: about 2 months ago
JSON representation
Simple timetracking using git + bash.
- Host: GitHub
- URL: https://github.com/laino/check
- Owner: laino
- Created: 2023-02-01T16:49:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T08:53:59.000Z (over 3 years ago)
- Last Synced: 2025-09-04T07:29:19.318Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CHECK
=====
Simple time tracking software using bash and git.
Clone this repository, create an alias/symlink to ``check``, and use like this:
```bash
# Show current period (current.txt)
check
# Check in. Appends checkin time to current.txt and creates a commit.
check in
# Check out. Appends checkout time to current.txt and creates a commit.
check out
# Appends current.txt to a file named after the current date and empties it.
check rotate
# List periods (files)
check list
# Check specific period
check show [file]
# Calculate number of hours in a period
check sum [file]
# Convinience method to run git commands like "check git push".
check git ...
```