- Added support for URIs
 - Added push command (pushes *.data to remote location)
 - Added config option: merge.autopush
This commit is contained in:
Johannes Schlatow
2010-09-02 01:26:55 +02:00
parent d362088305
commit 869655e818
8 changed files with 85 additions and 5 deletions

View File

@@ -245,6 +245,7 @@ int Context::dispatch (std::string &out)
else if (cmd.command == "undo") { handleUndo ( ); }
else if (cmd.command == "merge") { tdb.gc ();
handleMerge (out); }
else if (cmd.command == "push") { handlePush (out); }
else if (cmd.command == "_projects") { rc = handleCompletionProjects (out); }
else if (cmd.command == "_tags") { rc = handleCompletionTags (out); }
else if (cmd.command == "_commands") { rc = handleCompletionCommands (out); }