Git 101
Across
- 2. .git resides in this folder where git keeps all of its metadata for a project
- 4. Process of moving or combining a sequence of commits to a new base commit
- 5. There arises a _____ when two separate branches have made edits to the same line in a file, or when a file has been deleted in one branch but edited in the other
- 7. git command that updates remote references along with associated objects
- 8. An intermediate area where the commits can be formatted and reviewed before completing them
- 10. command used to introduce particular commits from one branch within a repository onto a different branch
- 14. Specifies intentionally untracked files to not include during commit
- 15. flag used to fix a broken commit
- 17. command used to create an empty Git repository or reinitialize an existing one
- 18. reference to a commit object
- 19. a dangerous Git command, used to invert changes from a branch
- 20. Copy of a repository so that you are able to freely experiment with changes without affecting the original project
Down
- 1. This directory consists of shell scripts that are activated if you run the corresponding Git commands
- 3. process of parallely working on same code base but developing different features
- 6. Creator of Git
- 9. command used to change your Git configuration, including your identity with which you push changes
- 11. A one-devops platform that has Continuous Integration/Continuous Delivery (CI/CD) and DevOps workflows built-in
- 12. command that uses binary search to find the commit that introduced a bug
- 13. When creating a pull request, you’ll usually be merging a ___branch into a release/master branch
- 16. Git command specifically intended for release announcements