Git 101

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