forked from kontur-courses/git-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arseniy_Yolkin
committed
Oct 20, 2022
1 parent
3bc4cdc
commit 86a8cf9
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## A2. rebase, cherry-pick и amend, чтобы пересоздать историю | ||
#### Нельзя переписать историю — можно создать новую | ||
- `git commit --amend --no-edit` — заменить последний коммит ветки на отредактированный с дополнительными изменениями без изменения сообщения | ||
- `git rebase <upstream>` — применить все коммиты от общего родителя до текущего к `<upstream>` | ||
- `git rebase -i <upstream>` — применить заново все коммиты, указав действие с каждым коммитом | ||
- `git rebase --continue` — продолжить rebase после разрешения конфликтов | ||
- `git rebase --abort` — отменить rabase | ||
- `git cherry-pick <commit>` — применить указанный коммит к HEAD |