git _______ can be used to combine the changes made on two different branches without creating a new commit.
- merge
- squash
- rebase
- commit
Git rebase allows you to incorporate changes from one branch into another by applying each commit on the branch to the target branch. Unlike merge, it allows for a cleaner commit history by avoiding unnecessary merge commits.
Loading...
Related Quiz
- Which Git command is used to undo the last commit while keeping the changes in the working directory?
- The git ________ command can be used to create a complete standalone copy of a repository.
- What does the git log command display in a Git repository?
- When resolving conflicts, the git _______ command allows a user to navigate through conflicted files.
- In Git, the __________ file can be used to enforce code quality standards across all project contributors.