GIT Interview Questions
1. What is a version control system (VCS)? A VCS keeps track of the contributions of the developers working as a team on the projects. They maintain the history of code changes done and with project evolution, it gives an upper hand to the developers to introduce new code, fixes bugs, and run tests with confidence that their previously working copy could be restored at any moment in case things go wrong. 2. What is a git repository? A repository is a file structure where git stores all the project-based files. Git can either stores the files on the local or the remote repository. 3. What does git clone do? The command creates a copy (or clone) of an existing git repository. Generally, it is used to get a copy of the remote repository to the local repository. You can download a PDF version of Git Interview Questions. Download PDF 4. What does the command git config do? The git config command is a convenient way to set configuration options for defining the behavior of the rep...
