XK0-005 · Question #1171
XK0-005 Question #1171: Real Exam Question with Answer & Explanation
The correct answer is A: git clone --progress. {"question_number": 1, "correct_answers": ["A", "E"], "explanation": "Two separate tasks require two separate commands. 'git --version' (E) displays the currently installed Git release number, directly satisfying the first task. 'git clone --progress' (A) forces Git to report pro
Question
A junior Linux administrator is performing version control on a Git repository. The administrator is given a list of tasks to complete: - List the currently installed Git release. - Show the status reporting of the clone. Which of the following commands would allow the administrator to complete these tasks? (Choose two.)
Options
- Agit clone --progress
- Bgit clone --recursive
- Cgit --help
- Dgit clone --dissociate
- Egit --version
- Fgit clone --shared
Explanation
{"question_number": 1, "correct_answers": ["A", "E"], "explanation": "Two separate tasks require two separate commands. 'git --version' (E) displays the currently installed Git release number, directly satisfying the first task. 'git clone --progress' (A) forces Git to report progress output (fetch statistics, object counts, etc.) during a clone operation, satisfying the second task of showing status reporting. The other options are unrelated: '--recursive' initializes submodules, '--dissociate' decouples a reference repository after cloning, '--shared' enables object sharing, and '--help' shows usage syntax rather than the installed version.", "generated_by": "claude-sonnet", "llm_judge_score": 4}
Topics
Community Discussion
No community discussion yet for this question.