All Projects → gochrono → chrono

gochrono / chrono

Licence: MIT license
A fast time tracking tool made with love

Programming Languages

go
31211 projects - #10 most used programming language
Gherkin
971 projects
shell
77523 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to chrono

Utt
Ultimate Time Tracker - A simple command-line time tracker written in Python
Stars: ✭ 175 (+446.88%)
Mutual labels:  time-tracker
time
React UI for Wobbly Time Tracker for the Teams
Stars: ✭ 24 (-25%)
Mutual labels:  time-tracker
pomogoro
Text-file based todo time tracking
Stars: ✭ 22 (-31.25%)
Mutual labels:  time-tracker
Hcl
Command-line tool for manipulating Harvest timesheets
Stars: ✭ 219 (+584.38%)
Mutual labels:  time-tracker
serde with
This crate provides custom de/serialization helpers to use in combination with serde's `with`-annotation and with the improved `serde_as`-annotation.
Stars: ✭ 392 (+1125%)
Mutual labels:  chrono
redmine hourglass
New Redmine plugin to enhance the time tracking abilities, reports and REST-API.
Stars: ✭ 68 (+112.5%)
Mutual labels:  time-tracker
Time To Leave
Log work hours and get notified when it's time to leave the office and start to live.
Stars: ✭ 155 (+384.38%)
Mutual labels:  time-tracker
kimai2-cmd
Command line client for Kimai2, the open source, self-hosted time tracker
Stars: ✭ 19 (-40.62%)
Mutual labels:  time-tracker
git-course
A basic git and Linux bash CLI training
Stars: ✭ 33 (+3.13%)
Mutual labels:  linux-cli
chronoman
Utility class to simplify use of timers created by setTimeout
Stars: ✭ 15 (-53.12%)
Mutual labels:  chrono
Klog
A plain-text file format and command line tool for time tracking
Stars: ✭ 222 (+593.75%)
Mutual labels:  time-tracker
youtrack-worklog-viewer
A tool to keep track of the work hours you spent on issues in the YouTrack issue management system
Stars: ✭ 37 (+15.63%)
Mutual labels:  time-tracker
trax
Simple time tracker designed for ChatOps
Stars: ✭ 40 (+25%)
Mutual labels:  time-tracker
Vscode Kanban
Kanban board for Visual Studio Code.
Stars: ✭ 191 (+496.88%)
Mutual labels:  time-tracker
ps4-time-tracking
Util for tracking PlayStation 4 usage times
Stars: ✭ 19 (-40.62%)
Mutual labels:  time-tracker
React Rewind
Time Travel Debugger for React useReducer
Stars: ✭ 159 (+396.88%)
Mutual labels:  time-tracker
goclockify
A terminal-based client for Clockify time tracker
Stars: ✭ 47 (+46.88%)
Mutual labels:  time-tracker
AwsTerm
A collection of awesome terminal utilities
Stars: ✭ 37 (+15.63%)
Mutual labels:  linux-cli
desktop-application
Electron-based desktop time tracker for Cattr
Stars: ✭ 38 (+18.75%)
Mutual labels:  time-tracker
time-tracker-cli
Super tiny and ligthway time tracker for all cli lovers
Stars: ✭ 79 (+146.88%)
Mutual labels:  time-tracker

Alt chrono

GitHub Release Go Report Card Build Status GitHub Golang Version

Overview

Chrono is a time tracking tool written in Go. It is fast and simple to use.

Want to know what you did with your time? Chrono will help you with that. Track how long you spend on a project. Add notes so you know exactly what you did.

asciicast

Installation

Binaries Releases

To install the latest stable release:

curl -L https://git.io/fpHAj | sh

We provide pre-built Chrono binaries for Windows, Linux, and macOS (Darwin) for x64 and i386 architectures.

If you'd like to install a specific version, checkout the releases page.

If you want to run the absolute latest version, build it from source.

Package Managers

If you are using Arch Linux, you can install the AUR package chrono-git to get the latest version or chrono for the latest stable release.

If you're using Ubuntu or a Debian based system, you can find debian packages (.deb) on the releases page.

Quickstart

Usage

To start tracking time a project, use the start command:

$ chrono start development +chrono

If you wanted to set the start time to something other than now, use the '--start' flag:

$ chrono start development --at "2019-02-01 13:00"

Time is parsed by jinzhu/now so it should be in a format it can understand.

This creates a new frame for the development project with the chrono tag.

Keep notes of what you do for a project with the notes add command:

$ chrono notes add "made some awesome changes to the README"
$ chrono notes show
[0]: made some awesome changes to the README

The notes are added to the current frame.

Get information about the current frame with the status command:

$ chrono status
Project development [chrono] started 10 seconds ago.

To stop tracking time for the current frame, use the stop command:

$ chrono stop
Stopping project development [chrono], started 5 minutes ago (id: 073bbf).

You can show a chronolical list of the current day's session (or frames) through the log command:

$ chrono log
Monday  3 December 2018
    (ID: 0d3131) 10:15 to 10:20     0h 05m 00s  development [chrono]

For a list of all available commands, use the help command:

$ chrono help

For a list of all available options and arguments for a command, use the ---help flag:

$ chrono log --help

Building Chrono from the Source

Prequisite Tools

Downloading & building the source

Chrono uses Go Modules to handle dependencies.

The easiest way to build from the source is to clone Chrono in a directory outsite of GOPATH, for example:

mkdir ~/src && cd ~/src
git clone https://github.com/gochrono/chrono.git
cd chrono
go install

Make sure $GOPATH/bin is on $PATH.

If you haven't customized your $GOPATH then you'll need to add ~/go/bin to $PATH.

Contributing to Chrono

To contribute to the Chrono project or documentation, you should fork the GitHub project and clone it to your machine.

For a complete guide to contributing to Chrono, see the Contribution Guide.

We welcome contributions of many kinds from updating documentation, feature requests, bug reports & issues, feature implementation, pull requests, answering other users questions, etc.

Asking Support Questions

We currently don't have a discussion forum. For now, use the issue tracker to ask questions.

Reporting Issues

If you believe you have found an issue or bad documentation, use the GitHub issue tracker to report the problem to the Chrono maintainers.

When reporting an issue, please provide the version of chrono is use (chrono version)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].