JACKLINE
Version Control - D197 With Questions And 100% ALL CORRECT ANSWERS
Terms in this set (37)
$ git config --global user.name "Your Name" Set the name that will be attached to your commits and tags.
$ git config --global user.email Set the e-mail address that will be attached to your commits and tags.
""
$ git config --global color.ui auto Enable some colorization of Git output.
Create a new local repository. If [project name] is provided, Git will
create a new directory name [project name] and will initialize a
$ git init [project name]
repository inside it. If [project name] is not provided, then a new
repository is initialized in the current directory.
$ git clone [project url] Downloads a project with the entire history from the remote repository.
$ git diff [file] Show changes between working directory and staging area.
Version Control - D197
1/3
Version Control - D197 With Questions And 100% ALL CORRECT ANSWERS
Terms in this set (37)
$ git config --global user.name "Your Name" Set the name that will be attached to your commits and tags.
$ git config --global user.email Set the e-mail address that will be attached to your commits and tags.
""
$ git config --global color.ui auto Enable some colorization of Git output.
Create a new local repository. If [project name] is provided, Git will
create a new directory name [project name] and will initialize a
$ git init [project name]
repository inside it. If [project name] is not provided, then a new
repository is initialized in the current directory.
$ git clone [project url] Downloads a project with the entire history from the remote repository.
$ git diff [file] Show changes between working directory and staging area.
Version Control - D197
1/3