Which of the following information is contained in the output of git status? (Choose three correct answers.)
Which of the following information is contained in the output of git status? (Choose three correct answers.)
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.
Shouldn't this be ACE?
ACE should be correct i think
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/
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)
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)