İleri Seviye Git
Amanda Crawford-Adamo
Software and Data Engineer

$$
$$

Main dalına geçin
$ git checkout main
Data-cleanup değişikliklerinin tümünü squash commit yapın
$ git merge --squash data-cleanup
Squash commit’i main geçmişine ekleyin
$ git commit -m "Implement and optimize data cleanup"

$$
$$

Git Octopus Merge Komutu
git merge -s octopus
Örnek
$ git merge -s octopus ingest transform load
Trying simple merge with ingest
Trying simple merge with transform
Trying simple merge with load
Merge made by the 'octopus' strategy.
...

Squash merge
git merge --squash <source_branch>
Octopus merge
git merge -s octopus <branch 1> <branch 2> <branch 3>
İleri Seviye Git