DIS08_2_Git

DIS08_2_Git

University

7 Qs

quiz-placeholder

Similar activities

Getting Started with git init

Getting Started with git init

University

10 Qs

Git basics

Git basics

University

11 Qs

Understanding Git and GitHub

Understanding Git and GitHub

University

10 Qs

GitHub

GitHub

University

10 Qs

Git & GitHub

Git & GitHub

University

10 Qs

GitHub Jan12

GitHub Jan12

11th Grade - University

10 Qs

Git & GitHub

Git & GitHub

University

10 Qs

Collaborative Working using Git - Week 11

Collaborative Working using Git - Week 11

University

12 Qs

DIS08_2_Git

DIS08_2_Git

Assessment

Quiz

Computers

University

Hard

Created by

Fabian Ha

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

git diff

git log

git status

git add filename

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The command git status shows

A git project’s commit history

Untracked files only

Untracked files and file changes staged for commit

File changes staged for commit

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The commit message lacks quotation marks

The “-m” option is not necessary here

The commit message should be in all caps

The “-m” option goes before the word “commit”

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Changes the name of a branch

Lists the commit history of the new branch

Switches you over to a new branch

Creates a new branch

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A Git project has a branch “bug-fix”. How do you switch to it?

git branch bug-fix

git switch master bug-fix

git checkout bug-fix

git switch bug-switch

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Why is the branch name “my branch” invalid?

The word “my” cannot be used

Valid branch names must contain a dash

Branch names cannot contain whitespace

Branch names must be capitalized

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What does git init do?

Commit your files to the repository

Delete a git project

Initialize a new git project

Add all files to the staging area