Skip to content

Instantly share code, notes, and snippets.

@nnnkit
Created January 5, 2019 10:42
Show Gist options
  • Save nnnkit/10f836f180b73d3b687187d8a3cd6530 to your computer and use it in GitHub Desktop.
Save nnnkit/10f836f180b73d3b687187d8a3cd6530 to your computer and use it in GitHub Desktop.
Webpack Config For Code Splitting
{
"info": {
"title": "Git Commands Level 1",
"description": "This quiz tests your basic knowledge of Git commands.",
"tags": ["git"]
},
"questions": [
{
"question": "Which command is used to check the state of your local repository since your last commit?",
"options": ["git check", "git status", "git commit", "git diff"],
"rightOptions": ["git status"]
},
{
"question": "Which command stages all your current changes?",
"options": [
"git commit add .",
"git commit .",
"git add .",
"git add all"
],
"rightOptions": ["git add ."]
},
{
"question": "How do you set the message for a commit?",
"options": [
"git message 'Add tests'",
"git add 'Add tests'",
"git commit 'Add tests'",
"git commit -m 'Add tests'"
],
"rightOptions": ["git commit -m 'Add tests'"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment