NEW
Font size
WorksheetsGit & GitHub
Total questions: 10
Worksheet time: 2mins
Git is an:
Distributed Version Control System
Centralized Version Control System
Not an Version Control System
Which of these terms best describes GitHub?
Integrated Development Environment
Distributed Version Control System
Issue Tracking System
Web-based repository hosting service
What's the git command that downloads your repository from GitHub to your computer?
git push
git fork
git clone
git commit
How do you check the status of your local git repository since your last commit?
git check
git status
git commit
git diff
How do you stage files for a commit?
git stage
git commit
git add
git reset
What's the shortcut to staging all the changes you have done?
git commit add .
git commit .
git add .
git push -m "message"
What comes first, staging with git add . or committing with git commit?
Staging your commit with git add .
Committing with git commit .
Which command should you use to initialize a new git repository?
git bash
git install
git init
git start
To get the latest changes from your remote repository, the git command is?
git refresh
git pull down
git pull origin master
git reset
Which is the correct push command?
git push <remote> <branch>
git push <branch> <remote>
Both correct
None of them.
