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
here, we want make our commits as a bunch of batches.
59
+
here, we want to make our commits as a bunch of batches.
60
60
61
-
we will rebasing with main with interactive option `git rebase main -i`.
61
+
we will rebase with main with the interactive option `git rebase main -i`.
62
62
63
63
but first create a backup branch before doing this interactive rebase.
64
64
@@ -111,8 +111,8 @@ s 122a02bf3 refactor
111
111
s 663edf45b refactor
112
112
...
113
113
```
114
-
and it will open windows for every change you made to rename commit's message.
115
-
- first window to rename commit `Added add3.py` because we squashed the commit after it, and by default the message would be the original message of `Added add3.py` and messages of squashed commits, here i will not change anything i will leave message like that.
114
+
and it will open windows for every change you made to rename the commit's message.
115
+
- first window to rename commit `Added add3.py` because we squashed the commit after it, and by default the message would be the original message of `Added add3.py` and messages of squashed commits, here I will not change anything I will leave message like that.
116
116
```bash
117
117
# This is a combination of 2 commits.
118
118
# This is the 1st commit message:
@@ -143,7 +143,7 @@ Refactor
143
143
# Untracked files:
144
144
...
145
145
```
146
-
- second window: rename(rewword) `Added add4.py`, you can edit the message as you want, i will rename it: `Added add4.py and edit it ` .
146
+
- second window: rename(reword) `Added add4.py`, you can edit the message as you want, I will rename it: `Added add4.py and edit it ` .
147
147
```
148
148
Added add4.py
149
149
@@ -187,7 +187,7 @@ Added add4.py and edit it
187
187
# with '#' will be ignored, and an empty message aborts the commit.
188
188
...
189
189
```
190
-
- third window will be the same as dirst one because of squashing two commits to commit:`Added add4.py`, i will leave it with out changing message.
190
+
- third window will be the same as the first one because of squashing two commits to commit:`Added add4.py`, I will leave it without changing the message.
0 commit comments