Part Three: Repositories [GitHub Foundations Certification Prep Course] #156418
Replies: 107 comments 9 replies
-
|
Hello again fellow Githubbers! To me, repositories and collaboration features are the most fascinating domain of the GitHub Foundations! Let's learn together π Step One: Prep π
repositories_GHF.mp4Step Two: Test Your Knowledge β‘
|
Beta Was this translation helpful? Give feedback.
-
|
Question One: Which of the following is NOT a valid GitHub repository visibility option? Question Two: What file in a GitHub repository is typically used to provide a description of the project? Question Three: What is the purpose of a .gitignore file in a GitHub repository? Question Four: What happens when a pull request is merged? Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously? Question Six: How does the CODEOWNERS file affect pull requests? Question Seven: How do you search for pull requests that are assigned to multiple users, e.g., @ali and @angel? |
Beta Was this translation helpful? Give feedback.
-
|
Question One: Question Two: Question Three: Question Four: Question Five: Question Six: Question Seven: |
Beta Was this translation helpful? Give feedback.
-
|
Hi everybody! These are my answers:
1. D
2. A 3. B 4. B 5. B 6. A 7. C |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
|
Answers for Provided Question:
1. Which of the following is NOT a valid GitHub repository visibility option?
D. Hidden
|
Beta Was this translation helpful? Give feedback.
-
|
Answers for the above questions:
|
Beta Was this translation helpful? Give feedback.
-
|
Here are the correct answers:
Question One: Which of the following is NOT a valid GitHub repository visibility option? Question Two: What file in a GitHub repository is typically used to provide a description of the project? Question Three: What is the purpose of a Question Four: What happens when a pull request is merged? Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously? Question Six: How does the Question Seven: How do you search for pull requests that are assigned to multiple users, e.g., @ali and @angel? |
Beta Was this translation helpful? Give feedback.
-
|
Answers for the above questions: D (Hidden) |
Beta Was this translation helpful? Give feedback.
-
|
D (Hidden) |
Beta Was this translation helpful? Give feedback.
-
|
My answers: D. (Hidden) |
Beta Was this translation helpful? Give feedback.
-
|
1 D. Hidden 2 A. README.md 3 B. To ignore specific files and directories from being tracked by Git 4 B. The changes in the compare branch are combined with the base branch 5 B. Pull Requests 6 A. It automatically assigns reviewers based on the file paths specified 7 D. is:pr assignee:ali OR assignee:angel |
Beta Was this translation helpful? Give feedback.
-
|
Question One: Which of the following is NOT a valid GitHub repository visibility option?
D. Hidden
Question Two: What file in a GitHub repository is typically used to provide a description of the project?
A. README.md
Question Three: What is the purpose of a .gitignore file in a GitHub repository?
B. To ignore specific files and directories from being tracked by Git
Question Four: What happens when a pull request is merged?
B. The changes in the compare branch are combined with the base branch.
Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously?
B. Pull Requests
Question Six: How does the CODEOWNERS file affect pull requests?
A. It automatically assigns reviewers based on the file paths specified.
Question Seven: How do you search for pull requests that are assigned to multiple users, e.g., @ali and @angel?
C. is:pr (assignee:ali OR assignee:angel)
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
|
Question One: Which of the following is NOT a valid GitHub repository visibility option?
Answer: D. Hidden
Question Two: What file in a GitHub repository is typically used to provide a description of the project? Question Three: What is the purpose of a .gitignore file in a GitHub repository? Question Four: What happens when a pull request is merged? Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously? Question Six: How does the CODEOWNERS file affect pull requests? Question Seven: How do you search for pull requests that are assigned to multiple users, e.g., @ali and @angel? |
Beta Was this translation helpful? Give feedback.
-
|
1. D
2. A
3. B
4. B
5. B
6. A
7. C
|
Beta Was this translation helpful? Give feedback.
-
|
Question One: Which of the following is NOT a valid GitHub repository visibility option? D. Hidden Question Two: What file in a GitHub repository is typically used to provide a description of the project? A.Β Question Three: What is the purpose of aΒ B. To ignore specific files and directories from being tracked by Git Question Four: What happens when a pull request is merged? B. The changes in the compare branch are combined with the base branch. Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously? B. Pull Requests Question Six: How does the CODEOWNERS file affect pull requests? C. It merges pull requests automatically if the owners approve. Question Seven: How do you search for all pull requests whereΒ B.Β |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
|
D (Hidden) |
Beta Was this translation helpful? Give feedback.
-
|
Which of the following is NOT a valid GitHub repository visibility option? D. Hidden What file in a GitHub repository is typically used to provide a description of the project? A. README.md What is the purpose of a .gitignore file in a GitHub repository? B. To ignore specific files and directories from being tracked by Git What happens when a pull request is merged? B. The changes in the compare branch are combined with the base branch. Which GitHub feature allows multiple people to make changes on the same project simultaneously B. Pull Request How does the CODEOWNERS file affect pull requests? A. It automatically assigns reviewers based on the file paths specified. How do you search for pull requests that are assigned to multiple users, e.g., @ali and https://github.com/angel? D. is:pr assignee:ali OR assignee:angel |
Beta Was this translation helpful? Give feedback.
-
|
The answers for the given questions are:
|
Beta Was this translation helpful? Give feedback.
-
|
Which of the following is NOT a valid GitHub repository visibility option? β D. Hidden (GitHub repositories can be Public, Private, or Internal, but there is no "Hidden" option.) What file in a GitHub repository is typically used to provide a description of the project? β A. README.md (The README.md file serves as the primary documentation and project description.) What is the purpose of a .gitignore file in a GitHub repository? β B. To ignore specific files and directories from being tracked by Git (It prevents unnecessary files from being committed.) What happens when a pull request is merged? β B. The changes in the compare branch are combined with the base branch (Merging incorporates changes into the main branch.) Which GitHub feature allows multiple people to make changes on the same project simultaneously? β B. Pull Requests (This feature enables collaboration by letting contributors submit changes for review.) How does the CODEOWNERS file affect pull requests? β A. It automatically assigns reviewers based on the file paths specified (It ensures certain team members review relevant changes.) How do you search for all pull requests where @ali or @angel are assigned? β D. is:pr assignee:ali OR assignee:angel (The OR operator allows searches for multiple assignees.) |
Beta Was this translation helpful? Give feedback.
-
|
My ans are:
|
Beta Was this translation helpful? Give feedback.
-
|
Question One: Which of the following is NOT a valid GitHub repository visibility option? βπΌ Answer: D Question Two: What file in a GitHub repository is typically used to provide a description of the project? βπΌ Answer: A Question Three: What is the purpose of a .gitignore file in a GitHub repository? βπΌ Answer: B Question Four: What happens when a pull request is merged? βπΌ Answer: B Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously? βπΌ Answer: B Question Six: How does the CODEOWNERS file affect pull requests? βπΌ Answer: A Question Seven: How do you search for all pull requests where @ali or @angel are assigned? βπΌ Answer: A |
Beta Was this translation helpful? Give feedback.
-
|
Question 1: Question 2: Question 3: Question 4: Question 5: Question 6: Question 7: |
Beta Was this translation helpful? Give feedback.
-
|
Answer:
|
Beta Was this translation helpful? Give feedback.
-
Show answerD. Hidden
Show answerA. README.md
Show answerB. To ignore specific files and directories from being tracked by Git
Show answerB. The changes in the compare branch are combined with the base branch.
Show answerB. Pull Requests
Show answerA. It automatically assigns reviewers based on the file paths specified.
Show answerC. is:pr (assignee:ali OR assignee:angel) |
Beta Was this translation helpful? Give feedback.
-
|
1-D, 2-A, 3-B, 4-B, 5-B, 6-A, 7-A |
Beta Was this translation helpful? Give feedback.
-
|
d a b b b a a |
Beta Was this translation helpful? Give feedback.
-
|
@tuves @queenofcorgis I think these conversations can be locked, as many of us are still answering questions. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Welcome to Part Three of the GitHub Foundations Exam prep! Youβre almost halfway there. Letβs dig into all things repositories; how to organize, maintain, search, keep it secure, and more.
Looking for Parts One and Two of the prep course? Study Copilot in Part Two's Discussion and the Foundations of Foundations in Part One's Discussion.
Step One: Prep π
Weβve assembled some materials for this first section.
Step Two: Test Your Knowledge β‘
Question One: Which of the following is NOT a valid GitHub repository visibility option?
A. Public
B. Private
C. Internal
D. Hidden
Question Two: What file in a GitHub repository is typically used to provide a description of the project?
A.
README.mdB.
CONTRIBUTING.mdC.
LICENSED.
CHANGELOG.mdQuestion Three: What is the purpose of a
.gitignorefile in a GitHub repository?A. To ignore merge conflicts
B. To ignore specific files and directories from being tracked by Git
C. To ignore pull requests
D. To ignore issues
Question Four: What happens when a pull request is merged?
A. The pull request is closed without incorporating its changes.
B. The changes in the compare branch are combined with the base branch.
C. The pull request is deleted, and the branch is archived.
D. The repository automatically locks the merged branch.
Question Five: Which GitHub feature allows multiple people to make changes on the same project simultaneously?
A. Docs
B. Pull Requests
C. Discussions
D. Secret Scanning
Question Six: How does the CODEOWNERS file affect pull requests?
A. It automatically assigns reviewers based on the file paths specified.
B. It prevents pull requests from being created for certain files.
C. It merges pull requests automatically if the owners approve.
D. It blocks pull requests unless all repository collaborators approve.
Question Seven: How do you search for all pull requests where
@alior@angelare assigned?A.
is:pr assignee:ali assignee:angelB.
is:pr assignee:ali,angelC.
is:pr (assignee:ali OR assignee:angel)D.
is:pr assignee:ali OR assignee:angelTo view the answers, jump to the comment below.
Looking to hide your answers? This markdown formatting will only show your answers if someone clicks to reveal it. Copy the text below to format your answers this way if youβd like!
Use the discussion below to share additional study resources, ask questions for our team to answer, and respond to our prep questions.
*No Purchase Necessary. Open only to Github community members 14+. Game ends 5/2/25. For details, see Official Rules.
Beta Was this translation helpful? Give feedback.
All reactions