During a database upgrade, a team needs to apply incremental schema changes stored in Git. What strategy should they follow to ensure a smooth transition?

  • Feature Branching
  • Git Tagging
  • Git Rebase
  • Git Merge
The team should follow the Git Rebase strategy to apply incremental schema changes during the database upgrade. Git Rebase allows the team to incorporate changes from one branch into another, providing a cleaner and more linear history. This is especially useful in scenarios like database upgrades where maintaining a clean history is crucial for understanding the sequence of changes. Git Rebase helps avoid unnecessary merge commits and simplifies the history, making the transition smoother.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *