mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Documentation
- The help command now includes the task-sync man page. - The help command now includes export.csv and export.yaml.
This commit is contained in:
parent
01bb76b3b6
commit
46c031c45c
3 changed files with 17 additions and 10 deletions
|
@ -203,6 +203,18 @@ int shortUsage (std::string& outs)
|
|||
table.addCell (row, 1, "task export");
|
||||
table.addCell (row, 2, "Lists all tasks in CSV format. Alias to export.csv");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task export.csv");
|
||||
table.addCell (row, 2, "Lists all tasks in CSV format.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task export.ical");
|
||||
table.addCell (row, 2, "Lists all tasks in iCalendar format.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task export.yaml");
|
||||
table.addCell (row, 2, "Lists all tasks in YAML format.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task merge URL");
|
||||
table.addCell (row, 2, "Merges the specified undo.data file with the local data files.");
|
||||
|
@ -210,15 +222,11 @@ int shortUsage (std::string& outs)
|
|||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task push URL");
|
||||
table.addCell (row, 2, "Pushes the local *.data files to the URL.");
|
||||
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task pull URL");
|
||||
table.addCell (row, 2, "Overwrites the local *.data files with those found at the URL.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task export.ical");
|
||||
table.addCell (row, 2, "Lists all tasks in iCalendar format.");
|
||||
|
||||
row = table.addRow ();
|
||||
table.addCell (row, 1, "task color [sample | legend]");
|
||||
table.addCell (row, 2, "Displays all possible colors, a named sample, or a "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue