Login using Social Account
     Continue with GoogleLogin using your credentials
Let's configure our email and name in the git repository. When we do commit, GIT will associate that commit to our name and email so that other developers in the team can identify the committer.
We use git config
command for the same
Make sure you are in ~/devops
directory
Specify your name with the below command. Replace full_name
with your full name like Abhinav Singh
git config user.name "full_name"
Specify your email with the below command. Replace email_id
with your email id like abc@xyz.com
git config user.email "email_id"
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Loading comments...