initial code commit

This commit is contained in:
ION606
2024-06-26 12:03:29 -04:00
parent e810bb8215
commit ce895bddaa
10 changed files with 199 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
echo "Usage: ionvcs <command> [args]"
echo
printf "%-15s %-20s %-30s\n" "Command" "Args" "Description"
printf "%-15s %-20s %-30s\n" "-------" "-----" "-----------"
printf "%-15s %-20s %-30s\n" "clone" "<repo-url>" "Clone a repository."
printf "%-15s %-20s %-30s\n" "user" "<username>" "Get user information."
printf "%-15s %-20s %-30s\n" "init" "N/A" "Initialize a repository."
printf "%-15s %-20s %-30s\n" "login" "N/A" "Login to the system."
printf "%-15s %-20s %-30s\n" "push" "[-f]" "Push changes to the repository."