Complete the command to initialize a new Git repository.
git [1]The git init command creates a new Git repository in the current directory.
Complete the command to create a new directory and initialize a Git repository inside it.
mkdir my_project && cd my_project && git [1]After creating and moving into the directory, git init initializes the repository there.
Fix the error in the command to initialize a Git repository.
git [1]The correct command is git init. Adding 'init' twice or other commands causes errors.
Fill both blanks to create a new directory and initialize a Git repository inside it.
mkdir [1] && cd [2] && git init
The directory name must be the same for both mkdir and cd commands to work correctly.
Fill all three blanks to initialize a Git repository, add all files, and make the first commit.
git init && git [1] . && git [2] -m [3]
After git init, use git add . to stage files, then git commit -m "Initial commit" to save the snapshot.