wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Git

Total questions: 10

Worksheet time: 3mins

Name
Class
Date
1.

What do you call a system the records the project code's changes over time?

a)

Repository System

b)

Code Change System

c)

Version Control System

2.

What is most popular version control system in the world?

a)

Mercurial

b)

SVN

c)

Git

3.

What are the options we could use to start using Git?

a)

Command Line

b)

Code editor / IDE

c)

Git Website

d)

Graphical User Interface

4.

How do we check our git version? Type the command to be used

(a)  

5.

In windows, what kind of command line tool is recommended if we want to execute git commands like a Linux?

(a)  

6.

Git command for initializing repository

(a)  

7.

What is the area where uncommitted changes are temporarily held after adding?

a)

Staging Area

b)

Unstaging Area

8.

Git command if I want to commit my changes about "Initial commit"

(a)  

9.

This transfers commits from your local repository to a remote repository.

a)

git fetch

b)

git pull

c)

git push

d)

git commit

10.

Used to update the local version of a repository from a remote.

a)

git push

b)

git pull

c)

git fetch

d)

git merge