Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ykws/git-rebase-example
Git rebase example for beginner
https://github.com/ykws/git-rebase-example
git-rebase
Last synced: 22 days ago
JSON representation
Git rebase example for beginner
- Host: GitHub
- URL: https://github.com/ykws/git-rebase-example
- Owner: ykws
- Created: 2021-10-28T15:04:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-24T05:30:35.000Z (almost 3 years ago)
- Last Synced: 2023-08-05T04:06:20.654Z (over 1 year ago)
- Topics: git-rebase
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git rebase Example for beginner
Git の branch をマージする時に rebase を利用してマージするための練習用のレポジトリです。
このリポジトリの branch の全体像は以下のようになっています。
![git-rebase-example-origin drawio](https://user-images.githubusercontent.com/5770480/139302539-fa5c6d09-8219-4c46-938e-e4c73896a906.png)
rebase を利用してマージし、以下のようなコミットログを作りましょう。
[Issues](../../issues) の番号順に対応します。![git-rebase-example-expect drawio](https://user-images.githubusercontent.com/5770480/139302667-dfcf491f-b86a-41ca-a5dc-1805b54b8f6e.png)
**なぜ rebase を利用するのかというと、ログが直列になり読みやすくなります。**
rebase を利用しないでマージすると、以下のようなコミットログになります。![git-rebase-example-without-rebase drawio](https://user-images.githubusercontent.com/5770480/139302706-c5b999d8-a17d-4a5a-848d-c60b670f126c.png)