From 1ef8902e943da065980a6b7415a9b98af2a4bd4d Mon Sep 17 00:00:00 2001 From: Johan Abildskov Date: Mon, 10 Feb 2020 13:11:56 +0100 Subject: [PATCH] Use explicit numbering --- Overview.md | 58 ++++++++++++++++++++++++++--------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/Overview.md b/Overview.md index a7e65858..2db5d21b 100644 --- a/Overview.md +++ b/Overview.md @@ -7,40 +7,40 @@ ## Basic Git Katas in Suggested Order 1. [basic-commits](basic-commits/README.md) - Very basic creation of commits. -1. [basic-staging](basic-staging/README.md) - Interacting with the stage (index). -1. [basic-branching](basic-branching/README.md) - The first stride into branching. -1. [ff-merge](ff-merge/README.md) - A tour around the most trivial of merges. -1. [3-way-merge](3-way-merge/README.md) - A basic merge, involving multiple diverged branches. -1. [merge-conflict](merge-conflict/README.md) - A basic merge between diverging branches with incompatible (but simple) changesets. -1. [merge-mergesort](merge-mergesort/README.md) - A merge conflict with actual code. -1. [rebase-branch](rebase-branch/README.md) - Using rebase as an alternative to merging. -1. [basic-revert](basic-revert/README.md) - Use revert to revert a change -1. [reset](reset/README.md) - Reset is a powerful and slightly dangerous command if you do not know what you are doing. Go through the three modes of resetting here. -1. [basic-cleaning](basic-cleaning/README.md) - Cleaning the workspace. -1. [amend](amend/README.md) - Amending previous commits. -1. [reorder-the-history](reorder-the-history/README.md) - We might have created our commits in a suboptimal order, practice to fix that scenario here. -1. [squashing](squashing/README.md) - A lot of small commits is good when you are working locally, but for sharing your code, it might be more beneficial to deliver your code changes in large sets. Go here to experiment with that. Write a good commit -1. [advanced-rebase-interactive](advanced-rebase-interactive/README.md) - Practice using the interactive rebase commands. -1. [basic-stashing](basic-stashing/README.md) - The first stride into stashing. -1. [ignore](ignore/README.md) - The basics of using the `.gitignore` file. And using `git rm`. -1. [submodules](submodules/README.md) - Submodules are loathed by many. Run through this exercise to see what the ruckus is all about. -1. [git-tag](git-tag//README.md) - Tags are convenient for keeping track of commits that bump a version number. In this exercise, you will list, add and delete tags. +2. [basic-staging](basic-staging/README.md) - Interacting with the stage (index). +3. [basic-branching](basic-branching/README.md) - The first stride into branching. +4. [ff-merge](ff-merge/README.md) - A tour around the most trivial of merges. +5. [3-way-merge](3-way-merge/README.md) - A basic merge, involving multiple diverged branches. +6. [merge-conflict](merge-conflict/README.md) - A basic merge between diverging branches with incompatible (but simple) changesets. +7. [merge-mergesort](merge-mergesort/README.md) - A merge conflict with actual code. +8. [rebase-branch](rebase-branch/README.md) - Using rebase as an alternative to merging. +9. [basic-revert](basic-revert/README.md) - Use revert to revert a change +10. [reset](reset/README.md) - Reset is a powerful and slightly dangerous command if you do not know what you are doing. Go through the three modes of resetting here. +11. [basic-cleaning](basic-cleaning/README.md) - Cleaning the workspace. +12. [amend](amend/README.md) - Amending previous commits. +13. [reorder-the-history](reorder-the-history/README.md) - We might have created our commits in a suboptimal order, practice to fix that scenario here. +14. [squashing](squashing/README.md) - A lot of small commits is good when you are working locally, but for sharing your code, it might be more beneficial to deliver your code changes in large sets. Go here to experiment with that. Write a good commit +15. [advanced-rebase-interactive](advanced-rebase-interactive/README.md) - Practice using the interactive rebase commands. +16. [basic-stashing](basic-stashing/README.md) - The first stride into stashing. +17. [ignore](ignore/README.md) - The basics of using the `.gitignore` file. And using `git rm`. +18. [submodules](submodules/README.md) - Submodules are loathed by many. Run through this exercise to see what the ruckus is all about. +19. [git-tag](git-tag//README.md) - Tags are convenient for keeping track of commits that bump a version number. In this exercise, you will list, add and delete tags. ## Katas that solve standard problems 1. [commit-on-wrong-branch](commit-on-wrong-branch/README.md) - If we accidentally put unpushed commits on the wrong branch, how do we effectively _move_ them to another branch before our work on that branch. -1. [commit-on-wrong-branch-2](commit-on-wrong-branch-2/README.md) - Another exercise on what to do if you have accidentally committed on the wrong branch. -1. [reverted-merge](reverted-merge/README.md) - We revert a merge, but, after fixes are added to the merged branch, we want the changes from merge and the new fixes. -1. [save-my-commit](save-my-commit/README.md) - Should you accidentally or on purpose delete a commit, go here to try and save it. You will use the reflog. -1. [detached-head](detached-head/README.md) - git complains that you are in a "You are in 'detached HEAD' state". What do you do? +2. [commit-on-wrong-branch-2](commit-on-wrong-branch-2/README.md) - Another exercise on what to do if you have accidentally committed on the wrong branch. +3. [reverted-merge](reverted-merge/README.md) - We revert a merge, but, after fixes are added to the merged branch, we want the changes from merge and the new fixes. +4. [save-my-commit](save-my-commit/README.md) - Should you accidentally or on purpose delete a commit, go here to try and save it. You will use the reflog. +5. [detached-head](detached-head/README.md) - git complains that you are in a "You are in 'detached HEAD' state". What do you do? ## Katas On Advanced features 1. [git-attributes](git-attributes/README.md) - .gitattributes file allows you to specify how git handles files, such as line endings in text files or how to diff a binary file. -1. [Bad-commit](bad-commit/README.md) - Using `git bisect` to find a bad commit. -1. [bisect](bisect/README.md) - Another kata using `git bisect`. -1. [pre-push](pre-push/README.md) - A quick exercise in using Git hooks. -1. [Investigation](investigation/README.md) - Discover what is going on in a Git repo, figure out what it looks like under the hood. -1. [Objects](objects/README.md) - A small exercise into Git internals. -1. [merge-driver](merge-driver/README.md) - Defining a custom merge driver. -1. [rebase-exec](rebase-exec/README.md) - Run tests on every commit using `git rebase --exec` +2. [Bad-commit](bad-commit/README.md) - Using `git bisect` to find a bad commit. +3. [bisect](bisect/README.md) - Another kata using `git bisect`. +4. [pre-push](pre-push/README.md) - A quick exercise in using Git hooks. +5. [Investigation](investigation/README.md) - Discover what is going on in a Git repo, figure out what it looks like under the hood. +6. [Objects](objects/README.md) - A small exercise into Git internals. +7. [merge-driver](merge-driver/README.md) - Defining a custom merge driver. +8. [rebase-exec](rebase-exec/README.md) - Run tests on every commit using `git rebase --exec`