mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-12 09:44:19 +02:00
Migrate 1.2-github-basics id quiz
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
*Selesaikan kuis ini dengan mencentang satu jawaban per pertanyaan.*
|
||||
|
||||
1. Tempat untuk membandingkan dan mendiskusikan perbedaan yang diperkenalkan pada cabang dengan review, komentar, tes terintegrasi, dan banyak lagi adalah:
|
||||
|
||||
- [ ] GitHub
|
||||
- [ ] Pull Request (Tarik Permintaan)
|
||||
- [ ] Feature branch (Cabang fitur)
|
||||
|
||||
2. Bagaimana Anda mendapatkan semua komit dari cabang remote (jarak jauh)?
|
||||
|
||||
- [ ] `git fetch`
|
||||
- [ ] `git pull`
|
||||
- [ ] `git commits -r`
|
||||
|
||||
3. Bagaimana Anda beralih ke sebuah cabang (branch)?
|
||||
|
||||
- [ ] `git switch [branch-name]`
|
||||
- [ ] `git checkout [branch-name]`
|
||||
- [ ] `git load [branch-name]`
|
@@ -1,13 +0,0 @@
|
||||
*Selesaikan kuis ini di kelas*
|
||||
|
||||
1. Bagaimana Anda membuat repo Git?
|
||||
|
||||
- [ ] git create
|
||||
- [ ] git start
|
||||
- [ ] git init
|
||||
|
||||
2. Apa fungsi `git add`?
|
||||
|
||||
- [ ] Commit (menyerahkan) kode Anda
|
||||
- [ ] Menambahkan file Anda ke area pementasan (staging area) untuk dilacak
|
||||
- [ ] Menambahkan file Anda ke GitHub
|
@@ -6,7 +6,8 @@ Pelajaran ini mencakup dasar-dasar GitHub, platform untuk menghosting dan mengel
|
||||
> Catatan sketsa oleh [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||
|
||||
## Kuis Pra-Kuliah
|
||||
[Kuis pra-kuliah](.github/pre-lecture-quiz.id.md)
|
||||
|
||||
[Kuis pra-kuliah](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/3)
|
||||
|
||||
## Pengantar
|
||||
|
||||
@@ -272,7 +273,8 @@ Proyek mungkin juga memiliki diskusi di forum, milis, atau saluran obrolan seper
|
||||
Sandingkan dengan seorang teman untuk mengerjakan kode satu sama lain. Buat proyek secara kolaboratif, buat kode, buat cabang, dan gabungkan perubahan.
|
||||
|
||||
## Kuis Pasca Kuliah
|
||||
[Kuis pasca kuliah](.github/post-lecture-quiz.id.md)
|
||||
|
||||
[Kuis pasca kuliah](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/4)
|
||||
|
||||
## Review & Belajar Mandiri
|
||||
|
||||
|
@@ -112,10 +112,10 @@
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"title": "Lesson 2 - Introduction to GitHub: Pre-Lecture Quiz",
|
||||
"title": "Pelajaran 2 - Pengantar GitHub: Kuis Pra-Kuliah",
|
||||
"quiz": [
|
||||
{
|
||||
"questionText": "How do you create a Git repo?",
|
||||
"questionText": "Bagaimana Anda membuat repo Git?",
|
||||
"answerOptions": [
|
||||
{
|
||||
"answerText": "git create",
|
||||
@@ -132,35 +132,35 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"questionText": "What does git add do?",
|
||||
"questionText": "Apa fungsi git add?",
|
||||
"answerOptions": [
|
||||
{
|
||||
"answerText": "Commits your code",
|
||||
"answerText": "Commit (menyerahkan) kode Anda",
|
||||
"isCorrect": "false"
|
||||
},
|
||||
{
|
||||
"answerText": "Adds your files to a staging area for tracking",
|
||||
"answerText": "Menambahkan file Anda ke area pementasan (staging area) untuk dilacak",
|
||||
"isCorrect": "true"
|
||||
},
|
||||
{
|
||||
"answerText": "Adds your files to GitHub",
|
||||
"answerText": "Menambahkan file Anda ke GitHub",
|
||||
"isCorrect": "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"questionText": "How do you check if git is installed on your computer?",
|
||||
"questionText": "Bagaimana Anda memeriksa apakah git terinstal di komputer Anda?",
|
||||
"answerOptions": [
|
||||
{
|
||||
"answerText": "type git --version",
|
||||
"answerText": "ketik git --version",
|
||||
"isCorrect": "true"
|
||||
},
|
||||
{
|
||||
"answerText": "type git --installed",
|
||||
"answerText": "ketik git --installed",
|
||||
"isCorrect": "false"
|
||||
},
|
||||
{
|
||||
"answerText": "type git --init",
|
||||
"answerText": "ketik git --init",
|
||||
"isCorrect": "false"
|
||||
}
|
||||
]
|
||||
@@ -169,27 +169,27 @@
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"title": "Lesson 2 - Introduction to GitHub: Post-Lecture Quiz",
|
||||
"title": "Pelajaran 2 - Pengantar GitHub: Kuis Pasca-Kuliah",
|
||||
"quiz": [
|
||||
{
|
||||
"questionText": "A place to compare and discuss the differences introduced on a branch with reviews, comments, integrated tests, and more is:",
|
||||
"questionText": "Tempat untuk membandingkan dan mendiskusikan perbedaan yang diperkenalkan pada cabang dengan review, komentar, tes terintegrasi, dan banyak ",
|
||||
"answerOptions": [
|
||||
{
|
||||
"answerText": "GitHub",
|
||||
"isCorrect": "false"
|
||||
},
|
||||
{
|
||||
"answerText": "A Pull Request",
|
||||
"answerText": "Pull Request (Permintaan Tarik)",
|
||||
"isCorrect": "true"
|
||||
},
|
||||
{
|
||||
"answerText": "A feature branch",
|
||||
"answerText": "Feature branch (Cabang fitur)",
|
||||
"isCorrect": "false"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"questionText": "How would you get all the commits from a remote branch?",
|
||||
"questionText": "Bagaimana Anda mendapatkan semua komit dari cabang remote (jarak jauh)?",
|
||||
"answerOptions": [
|
||||
{
|
||||
"answerText": "git fetch",
|
||||
@@ -206,7 +206,7 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"questionText": "How do you switch to a branch?",
|
||||
"questionText": "Bagaimana Anda beralih ke sebuah cabang (branch)?",
|
||||
"answerOptions": [
|
||||
{
|
||||
"answerText": "git switch [branch-name]",
|
||||
|
Reference in New Issue
Block a user