Complete the command to check the current Git version.
git [1]The git --version command shows the installed Git version.
Complete the command to create a new Git repository in the current folder.
git [1]The git init command creates a new Git repository in your current folder.
Fix the error in the command to check the status of files in Git.
git [1]The correct command to see file changes is git status. 'stat' is not a Git command.
Fill both blanks to add all files and commit with a message.
git [1] . && git [2] -m "Initial commit"
git add . stages all files, and git commit -m "message" saves the changes with a message.
Fill all three blanks to clone a repository, change directory, and check status.
git [1] https://github.com/user/repo.git && cd [2] && git [3]
git clone copies the repo, cd repo moves into it, and git status shows file changes.
