You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/git.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ error: cannot rebase: You have unstaged changes.
167
167
error: Please commit or stash them.
168
168
```
169
169
170
-
(See [https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states](https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states) for the difference between the two.)
170
+
(See <https://git-scm.com/book/en/v2/Getting-Started-What-is-Git%3F#_the_three_states> for the difference between the two.)
171
171
172
172
This means you have made changes since the last time you made a commit. To be able to rebase, either
173
173
commit your changes, or make a temporary commit called a "stash" to have them still not be commited
@@ -178,7 +178,7 @@ will prevent the "cannot rebase" error in nearly all cases:
178
178
git config --global rebase.autostash true
179
179
```
180
180
181
-
See [https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning](https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning) for more info about stashing.
181
+
See <https://git-scm.com/book/en/v2/Git-Tools-Stashing-and-Cleaning> for more info about stashing.
0 commit comments