701-100 Exam QuestionsBrowse all questions from this exam

701-100 Exam - Question 10


Which of the following information is contained in the output of git status? (Choose three correct answers.)

Show Answer
Correct Answer: ACDE

The output of 'git status' contains information about changed files that will not be part of the next commit, changed files that will be part of the next commit, and untracked files which are not subject to version control. It does not include information about locked files or unchanged files, which means options A, C, and E are correct.

Discussion

4 comments
Sign in to comment
paul68Options: ACE
Sep 9, 2020

Shouldn't this be ACE?

Blob21Options: ACE
Jun 21, 2021

ACE should be correct i think

ayuuk
Dec 20, 2019

B and D. D.- Plugins are the primary means of enhancing the functionality of a Jenkins environment to suit organization- or user-specific needs. There are over a thousand different plugins which can be installed on a Jenkins master and to integrate various build tools, cloud providers, analysis tools, and much more. https://jenkins.io/doc/book/managing/plugins/

[Removed]Options: CDE
Mar 2, 2022

git-status - Show the working tree status Displays paths that have differences between the index file and the current HEAD commit, paths that have differences between the working tree and the index file, and paths in the working tree that are not tracked by Git (and are not ignored by gitignore)

examtp1
Aug 24, 2022

This means the correct answer is A-C-E Nowhere in your description says anything about unchanged files! It's all about changed files (either staged which will be commited, unstaged but tracked or not tracked)