Your team decides to enforce a linear history on the main branch. Which Git feature would be most appropriate to achieve this?
- merge
- rebase
- squash
- cherry-pick
The correct option is rebase. Rebasing helps create a linear history by incorporating changes from one branch onto another, eliminating unnecessary merge commits. This promotes a cleaner and more straightforward history, especially on the main branch.
Loading...
Related Quiz
- How do you resolve a merge conflict in Git?
- The command git _______ can help in visualizing the branching and merging history in a repository.
- In Git, what does the command git push -u origin master do?
- A developer accidentally commits sensitive data to a public repository. What steps should they take to rectify this?
- During a collaborative project, a team member needs to update their local repository with changes from the remote repository. Which sequence of Git commands is appropriate?