Setting up a new project with Git

Report a typo

You've just started a new software project within a team at your company. Your team is using Git for version control. The project repository link is 'https://github.com/username/project.git'. Your task is to set up your local environment to work with this repository. Fill in the blanks in the given code sequence to initialize Git, set your username and email globally, clone the repository, and check the status of your Git repository.

Fill in the gaps with the relevant elements
# Initialize Git


# Configure username
 --global user.name "username"

# Configure email
git config --global user.email "[email protected]"

# Clone the repository from remote
 https://github.com/username/project.git

# Check status of the Git repository
git configgit initgit clonegit status
___

Create a free account to access the full topic