mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-07 21:24:26 +02:00
Closes #718 -- clarify the two options we can do in our interactive rebase
This commit is contained in:
parent
1d46d36a52
commit
a1f7bda2d9
1 changed files with 3 additions and 2 deletions
|
@ -73,11 +73,12 @@ exports.level = {
|
|||
"type": "ModalAlert",
|
||||
"options": {
|
||||
"markdowns": [
|
||||
"When the interactive rebase dialog opens, you have the ability to do 3 things:",
|
||||
"When the interactive rebase dialog opens, you have the ability to do two things in our educational application:",
|
||||
"",
|
||||
"* You can reorder commits simply by changing their order in the UI (in our window this means dragging and dropping with the mouse).",
|
||||
"* You can choose to completely omit some commits. This is designated by `pick` -- toggling `pick` off means you want to drop the commit.",
|
||||
"* Lastly, you can squash commits. Unfortunately our levels don't support this for a few logistical reasons, so I'll skip over the details of this. Long story short, though -- it allows you to combine commits.",
|
||||
"",
|
||||
"*It is worth mentioning that in the real git interactive rebase you can do many more things like squashing (combining) commits, amending commit messages, and even editing the commits themselves. For our purposes though we will focus on these two operations above.*",
|
||||
"",
|
||||
"Great! Let's see an example."
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue