I created a feature(based on master) and merged it to a certain branch called intt but SourceTree does not show different files at the bottom. I make sure that the branch intt and feature I created have different files. Does anyone know how to solve this problem?
Hi @Akira Chen
Welcome to the Atlassian community!
The bottom panel in Sourcetree displays only uncommitted working copy changes. If your merge completed smoothly, Git has already committed it, leaving that panel empty by design. This is normal and not an issue.
To see the files the merge brought in, I would click the merge commit itself in the graph. The changed files then show in the list on the right.
Two things to check if it still looks empty:
git merge --no-ff feature-branch.To confirm what happened, you could run git log --oneline --graph and git diff intt~1 intt in a terminal.
Cheers, Martin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.