NEW
Font size
WorksheetsGit Quiz
Total questions: 13
Worksheet time: 7mins
What is git?
What is GitHub?
VCS
A file-sharing system
A web-based platform for Version Control
Social media site
What command is used to stage changes in Git?
Git push
Git commit
Git pull
Git add
Git is only used by programmers and developers to manage code.
True
False
Which editor is initially configured with Git?
Vim
Vs code
Nano
Jupyter
In command: git commit -a -m "Message" , What are -a and -m?
Tags
Attributes
Flags
Message
How to bypass the staging part of the Git lifecycle?
Git push commit
Git force commit
Git status
Git commit -a
Git commit has an ______ hash which is ___ characters long.
Alphabet, 40
Alphanumeric, 42
Alphanumeric, 40
Numeric, 42
Git diff shows us?
Difference between files
Changes made
Recent commits
Commit hashes
Git rm shows us?
Rename the expo
Differences b/w files
Remove the file or repo
Remember the changes
How to unstage files And revert back the changes?
Git checkout filename
Git reset head filename
Git push
Git revert commit
How to change branch in git?
Git checkout branch
Git change branch
Git checkin branch
Git branch switch
Is git open-source?
True
False
