Complete the command to clone a repository named 'project' from GitHub.
git clone [1]git push or git status instead of a URL.The git clone command requires the repository URL to copy it locally.
Complete the command to create a new branch named 'feature' in your local git repository.
git [1] featuregit merge or git push which do different things.The git branch command creates a new branch locally.
Fix the error in the command to push the 'feature' branch to the remote repository.
git push origin [1]You must specify the branch name you want to push, which is 'feature' here.
Fill both blanks to create a new monorepo directory and initialize it as a git repository.
mkdir [1] && cd [2] && git init
Both commands should use the same directory name to create and enter it before initializing git.
Fill all three blanks to create a multi-repo setup by cloning two separate repositories named 'frontend' and 'backend'.
git clone [1] && git clone [2] && ls [3]
You clone both repos separately and then list both directories to confirm they exist.