thinkncollab-cli 0.0.78 → 0.0.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/index.js +6 -6
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -191,13 +191,13 @@ case "invite": {
|
|
|
191
191
|
console.log("✅ TNC CLI ready!");
|
|
192
192
|
console.log("Commands:");
|
|
193
193
|
console.log(" tnc-cli login");
|
|
194
|
-
console.log(" tnc-cli init");
|
|
195
|
-
console.log(" tnc-cli push --room <roomId> <path>");
|
|
194
|
+
console.log(" tnc-cli init <roomId>");
|
|
195
|
+
// console.log(" tnc-cli push --room <roomId> <path>");
|
|
196
196
|
console.log(" tnc-cli create"); //creating a branch
|
|
197
|
-
console.log(" tnc-cli pull --room <roomId>");
|
|
198
|
-
console.log(" tnc-cli sync branch --room <roomId>");
|
|
199
|
-
console.log(" tnc-cli merge <roomId>")
|
|
200
|
-
console.log(" tnc-cli status");
|
|
197
|
+
// console.log(" tnc-cli pull --room <roomId>");
|
|
198
|
+
// console.log(" tnc-cli sync branch --room <roomId>");
|
|
199
|
+
// console.log(" tnc-cli merge <roomId>")
|
|
200
|
+
// console.log(" tnc-cli status");
|
|
201
201
|
console.log(" tnc-cli whoami");
|
|
202
202
|
console.log(" tnc-cli my-tasks <roomId>");
|
|
203
203
|
console.log(" tnc-cli logout");
|