This was written by Linus Torvalds and provides local version control.
What is Git?
This is an index file in the .git directory that stores the information about what the user wants added, updated, or deleted in the respository.
What is staging area?
This command allows you to update the local repository with the changes in the staging area.
What is git commit?
This command allows you to obtain an initial copy of an existing Git repository for the first time.
What is git clone?
DAILY DOUBLE!
You have doubled your score?
This hold metadata such as files, commits, and logs.
What is the repository or .git directory.
This command allows you to update the remote repository.
What is git push?
This command removes files from the Git repository.
What is git rm?
This resides on a server and can provide offsite storage.
This contains the file copies that can be modified and are only visible to the user of the client.
What is working directory?
What will the following command do? git branch -d <branch_name>
What is delete a branch?
This command shows all commits in the current branch's history.
What is git log?
This is free and open-source software for distributed version control.
What is Git?
This state refers to the version of the file that has been saved in the repository.
What is committed?
This command allows you to compare changes between files.
What is git diff?
This command stages and commits a file with a single command.
What is git commit -a?
This provides easy collaboration regardless of physical location.
What is GitHub?
In this state, the modified file is ready to be committed to the repository.
What is staged?
This command allows you to view the modified files in the working directory.
What is git status?