mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-12 17:54:22 +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)
|
> Catatan sketsa oleh [Tomomi Imura](https://twitter.com/girlie_mac)
|
||||||
|
|
||||||
## Kuis Pra-Kuliah
|
## Kuis Pra-Kuliah
|
||||||
[Kuis pra-kuliah](.github/pre-lecture-quiz.id.md)
|
|
||||||
|
[Kuis pra-kuliah](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/3)
|
||||||
|
|
||||||
## Pengantar
|
## 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.
|
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
|
||||||
[Kuis pasca kuliah](.github/post-lecture-quiz.id.md)
|
|
||||||
|
[Kuis pasca kuliah](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/4)
|
||||||
|
|
||||||
## Review & Belajar Mandiri
|
## Review & Belajar Mandiri
|
||||||
|
|
||||||
@@ -288,4 +290,4 @@ Anda juga akan menemukan lab yang lebih canggih.
|
|||||||
|
|
||||||
## Tugas
|
## Tugas
|
||||||
|
|
||||||
Selesaikan [Minggu Pertama di lab pelatihan GitHub](https://lab.github.com/githubtraining/first-week-on-github)
|
Selesaikan [Minggu Pertama di lab pelatihan GitHub](https://lab.github.com/githubtraining/first-week-on-github)
|
||||||
|
@@ -112,10 +112,10 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 3,
|
"id": 3,
|
||||||
"title": "Lesson 2 - Introduction to GitHub: Pre-Lecture Quiz",
|
"title": "Pelajaran 2 - Pengantar GitHub: Kuis Pra-Kuliah",
|
||||||
"quiz": [
|
"quiz": [
|
||||||
{
|
{
|
||||||
"questionText": "How do you create a Git repo?",
|
"questionText": "Bagaimana Anda membuat repo Git?",
|
||||||
"answerOptions": [
|
"answerOptions": [
|
||||||
{
|
{
|
||||||
"answerText": "git create",
|
"answerText": "git create",
|
||||||
@@ -132,35 +132,35 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"questionText": "What does git add do?",
|
"questionText": "Apa fungsi git add?",
|
||||||
"answerOptions": [
|
"answerOptions": [
|
||||||
{
|
{
|
||||||
"answerText": "Commits your code",
|
"answerText": "Commit (menyerahkan) kode Anda",
|
||||||
"isCorrect": "false"
|
"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"
|
"isCorrect": "true"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"answerText": "Adds your files to GitHub",
|
"answerText": "Menambahkan file Anda ke GitHub",
|
||||||
"isCorrect": "false"
|
"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": [
|
"answerOptions": [
|
||||||
{
|
{
|
||||||
"answerText": "type git --version",
|
"answerText": "ketik git --version",
|
||||||
"isCorrect": "true"
|
"isCorrect": "true"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"answerText": "type git --installed",
|
"answerText": "ketik git --installed",
|
||||||
"isCorrect": "false"
|
"isCorrect": "false"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"answerText": "type git --init",
|
"answerText": "ketik git --init",
|
||||||
"isCorrect": "false"
|
"isCorrect": "false"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -169,27 +169,27 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 4,
|
"id": 4,
|
||||||
"title": "Lesson 2 - Introduction to GitHub: Post-Lecture Quiz",
|
"title": "Pelajaran 2 - Pengantar GitHub: Kuis Pasca-Kuliah",
|
||||||
"quiz": [
|
"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": [
|
"answerOptions": [
|
||||||
{
|
{
|
||||||
"answerText": "GitHub",
|
"answerText": "GitHub",
|
||||||
"isCorrect": "false"
|
"isCorrect": "false"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"answerText": "A Pull Request",
|
"answerText": "Pull Request (Permintaan Tarik)",
|
||||||
"isCorrect": "true"
|
"isCorrect": "true"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"answerText": "A feature branch",
|
"answerText": "Feature branch (Cabang fitur)",
|
||||||
"isCorrect": "false"
|
"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": [
|
"answerOptions": [
|
||||||
{
|
{
|
||||||
"answerText": "git fetch",
|
"answerText": "git fetch",
|
||||||
@@ -206,7 +206,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"questionText": "How do you switch to a branch?",
|
"questionText": "Bagaimana Anda beralih ke sebuah cabang (branch)?",
|
||||||
"answerOptions": [
|
"answerOptions": [
|
||||||
{
|
{
|
||||||
"answerText": "git switch [branch-name]",
|
"answerText": "git switch [branch-name]",
|
||||||
|
Reference in New Issue
Block a user