Taskwarrior - Command line Task Management taskwarrior.org https://taskwarrior.org
Find a file
Tomas Babej d81b999fa9 tests: Do not require line buffering
Test runner complains about it not being supported with binary files and
it does not look like it affects any tests in the first place anyway.
2020-11-21 12:27:05 -05:00
.github Templates: Combined two sentences for readability 2018-02-07 20:49:22 -05:00
cmake Build: C++14 support added 2018-02-16 22:04:29 -05:00
doc Fix typos 2020-11-17 10:41:13 -05:00
performance Build: C++14 support added 2018-02-16 22:04:29 -05:00
scripts speed up fish autocompletion and more features in completion options 2020-11-17 10:51:40 -05:00
src Make modify and delete commands respect rc.recurrence.confirmation config option. 2020-11-21 12:26:41 -05:00
test tests: Do not require line buffering 2020-11-21 12:27:05 -05:00
.gitignore Improve TAP compliance in test suite 2017-12-02 12:06:54 -05:00
.gitmodules Udated URL in .gitmodules to point to GH 2018-02-17 23:00:46 +01:00
.travis.yml travis: Disable testing on gentoo 2020-11-21 00:27:36 -05:00
AUTHORS Added Anthony VB to AUTHORS 2019-07-20 14:21:18 -04:00
ChangeLog docs: Document changes to new-uuid behaviour 2020-09-18 21:26:37 -04:00
cmake.h.in I18N: Removed language build settings 2018-01-21 23:36:00 -05:00
CMakeLists.txt Build: C++14 support added 2018-02-16 22:04:29 -05:00
commit.h.in Code Cleanup 2013-04-07 23:50:51 -04:00
COPYING meta: Update copyright year 2019-01-01 08:46:21 -05:00
DEVELOPER.md fix typo ("tests" -> "test") 2019-04-28 14:40:42 -04:00
docker-compose.yml tests: Add CentOS7 CI testing support 2019-01-02 13:24:11 -05:00
INSTALL Update notes regarding C++14 support 2018-03-08 02:47:31 +03:00
LICENSE Update LICENSE 2020-11-17 10:49:58 -05:00
NEWS docs: Document changes to new-uuid behaviour 2020-09-18 21:26:37 -04:00
README.md README: Make the travis badge point to correct repository 2019-01-02 19:45:43 -05:00

Taskwarrior

Travis build status

Thank you for taking a look at Taskwarrior!

Taskwarrior is a GTD, todo list, task management, command line utility with a multitude of features. It is a portable, well supported and very active Open Source project.

Documentation

There is extensive online documentation. You'll find all the details at taskwarrior.org/docs

At the site you'll find online documentation, downloads, news and more.

Support

For support options, take a look at taskwarrior.org/support

Please use pull requests, or alternately send your code patches to support@gothenburgbitfactory.org

Branching Model

We use the following branching model:

  • master is the stable branch. Building from here is the same as building from the latest tarball, or installing a binary package. No development is done on the master branch.

  • 2.6.0 is the current development branch. All work is done here, and upon release it will be merged to master. This development branch is not stable, may not even build or pass tests, and should be treated accordingly. Make backups.

Installing

There are many binary packages available, but to install from source requires:

  • git
  • cmake
  • make
  • C++ compiler, currently gcc 5.0+ or clang 3.4+ for full C++14 support

Download the tarball, and expand it:

$ curl -O https://taskwarrior.org/download/task-2.6.0.tar.gz
$ tar xzf task-2.6.0.tar.gz
$ cd task-2.6.0

Or clone this repository:

$ git clone --recursive -b 2.6.0 https://github.com/GothenburgBitFactory/taskwarrior.git
$ cd taskwarrior

In case of errors with libshared - URL pointing to git.tasktools.org in either .git/config or .gitmodules:

$ sed -i 's/git.tasktools.org\/TM/github.com\/GothenburgBitFactory/' .git/config
$ git submodule update

or

$ sed -i 's/git.tasktools.org\/TM/github.com\/GothenburgBitFactory/' .gitmodules
$ git submodule init
$ git submodule update

Then build:

$ cmake -DCMAKE_BUILD_TYPE=release .
...
$ make
...
[$ make test]
...
$ sudo make install

Contributing

Your contributions are especially welcome. Whether it comes in the form of code patches, ideas, discussion, bug reports, encouragement or criticism, your input is needed.

Visit Github and participate in the future of Taskwarrior.

License

Taskwarrior is released under the MIT license. For details check the LICENSE file.