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: ACE

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

5 comments
Sign in to comment
paul68
Sep 9, 2022

Shouldn't this be ACE?

Blob21
Jun 21, 2023

ACE should be correct i think

ayuuk
Dec 20, 2021

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, 2024

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, 2024

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)

DALIIOptions: ACE
Feb 17, 2025

A. Changed files that will not be part of the next commit. ✅ Git status shows modified files that have not been staged (i.e., changes in the working directory that won’t be committed unless staged). C. Changed files that will be part of the next commit. ✅ Staged changes (files added using git add) are listed under “Changes to be committed” in git status. E. Untracked files which are not subject to version control. ✅ git status lists untracked files—new files in the working directory that haven’t been added to Git yet.