Font size
WorksheetsGit
Total questions: 10
Worksheet time: 3mins
What do you call a system the records the project code's changes over time?
Repository System
Code Change System
Version Control System
What is most popular version control system in the world?
Mercurial
SVN
Git
What are the options we could use to start using Git?
Command Line
Code editor / IDE
Git Website
Graphical User Interface
How do we check our git version? Type the command to be used
(a)
In windows, what kind of command line tool is recommended if we want to execute git commands like a Linux?
(a)
Git command for initializing repository
(a)
What is the area where uncommitted changes are temporarily held after adding?
Staging Area
Unstaging Area
Git command if I want to commit my changes about "Initial commit"
(a)
This transfers commits from your local repository to a remote repository.
git fetch
git pull
git push
git commit
Used to update the local version of a repository from a remote.
git push
git pull
git fetch
git merge
