| S.No | Command ID | Commands | Category | Description |
|---|---|---|---|---|
| 1 | 000008 | git clone "repo-url" | git | Create a local copy of a remote repository. |
| 2 | 000010 | git commit -m "message" | git | Save staged changes as a commit. |
| 3 | 000007 | git init | git | Initialize a new Git repository. |
| 4 | 000009 | git status | git | Show the current state of the working directory and staging area. |
| 5 | 000012 | php artisan make:controller UserController | laravel | Creates a new controller class. |