mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-14 08:34:26 +02:00
Clarify "pick" vs. "drop" in interactive rebase
This commit is contained in:
parent
b906bb5fcd
commit
3128cddef8
1 changed files with 2 additions and 2 deletions
|
@ -78,8 +78,8 @@ exports.level = {
|
||||||
"When the interactive rebase dialog opens, you have the ability to do two things in our educational application:",
|
"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 (via dragging and dropping with the mouse).",
|
"* You can reorder commits simply by changing their order in the UI (via dragging and dropping with the mouse).",
|
||||||
"* You can choose to keep all commits or drop specific ones. When the dialog opens, each commit is set to being included by the `pick` " +
|
"* You can choose to keep all commits or drop specific ones. When the dialog opens, each commit is set to be included by the `pick` " +
|
||||||
"button being active. To drop a commit, click the `pick` button to toggle it off.",
|
"button next to it being active. To drop a commit, toggle off its `pick` button.",
|
||||||
"",
|
"",
|
||||||
"*It is worth mentioning that in the real git interactive rebase you can do many more things like squashing (combining) 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.*",
|
"amending commit messages, and even editing the commits themselves. For our purposes though we will focus on these two operations above.*",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue