Which command creates and switches to a new branch named feature/x?git branch feature/x && git checkout feature/xgit switch -c feature/xgit create-branch feature/xAfter finishing work on feature/x, how do you merge it into main?git merge main into feature/xgit switch feature/x && git merge maingit switch main && git merge feature/xWhat typically causes a merge conflict?Too many commits on a branchConcurrent changes to the same lines in the same filesUsing git switch instead of git checkoutHow do you mark a conflicted file as resolved after editing it?git resolve file.txtgit add file.txtgit commit —resolvedWhich statement about fast-forward merges is true?If main has not diverged, Git can simply move the branch pointer forwardThey always create a merge commitThey require using —no-ffSubmit Print Lesson