mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-01 18:27:20 +02:00
Push/Pull/Merge
- Re-enabled the commands.
This commit is contained in:
parent
254bce5dc2
commit
2d30275889
4 changed files with 15 additions and 11 deletions
|
@ -50,8 +50,10 @@ CmdPush::CmdPush ()
|
|||
// this is potentially on another machine, no checking can be performed.
|
||||
int CmdPush::execute (std::string& output)
|
||||
{
|
||||
/*
|
||||
std::string file = trim (context.task.get ("description"));
|
||||
Arguments words = context.args.extract_simple_words ();
|
||||
std::string file;
|
||||
if (words.size ())
|
||||
file = words[0]._first;
|
||||
|
||||
Uri uri (file, "push");
|
||||
uri.parse ();
|
||||
|
@ -96,7 +98,6 @@ int CmdPush::execute (std::string& output)
|
|||
throw std::string ("No uri was specified for the push. Either specify "
|
||||
"the uri of a remote .task directory, or create a "
|
||||
"'push.default.uri' entry in your .taskrc file.");
|
||||
*/
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue