Choose a topic to test your knowledge and improve your GitLab skills
What is full form of VCS?
Git is a __________
Which of the following is true about Git? 1. Git does not rely on the central server. 2. Git require network connection only to publish your changes and take the latest changes. 3. Every git checkout is a full backup of the server repository.
Which of the following terminology is not related to git?
Which of the following is not true about git?
Which of the following is example of distributed version control?
Who created Git?
Which of the following are the stages in which your git file can reside?
Git command that lets you get and set configuration variables that control all aspects of how Git looks and operates is
Which of the following is correct git command to set your username during git initial setup?
Git command to list all the settings Git can find at any point of time is
To get the comprehensive manual page (manpage) help for any of the Git commands we can use
Git command that helps us initialize git repository for the project (folder) that we intend to track using version control system Git is
Which of the following is true related to git init command? 1. A .git folder (sub-directory) is created within your git project (directory) once you run the git init command 2. .git is generally hidden folder.
Which of the following is git tool?
_____ is a version of the repository that diverges from the main working project.
Which of the following command is used to switch between branches in a repository?
Which of the following command in git helps create copy of target repository?
Which of the following are type of reset facility available in git?
Which command can help you to switch branch without committing the current branch?
The act of transferring commits from your local repository to a remote repository is known as ___________
The reference to the remote repository from where a project was initially cloned is called __________
What represents the last commit in the current checkout branch in git?
Tags in git can be
Which is the correct git command to add files to the repository?
Which of the following is the correct git command to commit changes with proper message?
Which of the following git command helps to add multiple changes at the same time?
What does the below git command indicates? git add *.java
Which git command can help to stash a change with a message?
Which of the following git command can be used to check the stored stashes?
Which of the following option is not valid with git stash command?
Which of the following statement is true about git ignore file?
Which of the following will help you create a git repository?
Which command helps us to see the tracked, untracked files and changes but does not show any commit records?
Git log command contains following data
git log --oneline command will display
git command which displays the files that have been modified is