SOFTWARE ENGINEERING

EMERGING TRENDS IN SOFTWARE ENGINEERING

DEVOPS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
After you install Git and prior to issuing the first commit, which two configuration properties does the tool expect to be configured?
A
username and email address
B
username and password
C
first and last name
D
username and IP address
Explanation: 

Detailed explanation-1: -Open the command line. Set your username: git config–global user.name “FIRST NAME LAST NAME” Set your email address: git config–global user.email “MY NAMEexample.com"

Detailed explanation-2: -Open Terminal . Set a Git username: $ git config–global user.name “Mona Lisa” Confirm that you have set the Git username correctly: $ git config–global user.name > Mona Lisa.

There is 1 question to complete.