mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 07:57:20 +02:00
Commands - push
- Migrated handlePush to CmdPush.
This commit is contained in:
parent
99fae1f9a8
commit
af90a14cb5
9 changed files with 150 additions and 65 deletions
|
@ -56,6 +56,7 @@
|
|||
#include <CmdPrepend.h>
|
||||
#include <CmdProjects.h>
|
||||
#include <CmdPull.h>
|
||||
#include <CmdPush.h>
|
||||
#include <CmdQuery.h>
|
||||
#include <CmdReports.h>
|
||||
#include <CmdShell.h>
|
||||
|
@ -116,6 +117,7 @@ void Command::factory (std::map <std::string, Command*>& all)
|
|||
c = new CmdPrepend (); all[c->keyword ()] = c;
|
||||
c = new CmdProjects (); all[c->keyword ()] = c;
|
||||
c = new CmdPull (); all[c->keyword ()] = c;
|
||||
c = new CmdPush (); all[c->keyword ()] = c;
|
||||
c = new CmdQuery (); all[c->keyword ()] = c;
|
||||
c = new CmdReports (); all[c->keyword ()] = c;
|
||||
c = new CmdShell (); all[c->keyword ()] = c;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue