Reputation: 371
I have a Git project in Bitbucket and I am running into an issue where I am not able too see commit history. I can check-in code and push it into the repo, but I am not able to see any changes. However, if I use the site or other Git visual client, I can see the commits. Any idea what I am doing wrong? SourceTree version 1.5.4.
Upvotes: 3
Views: 4361
Reputation: 371
After contacting Atlassian support, we have been able to get to the bottom of it. There was a bug in the SourceTree app (see this JIRA issue). The problem was related to having .git/HEAD file in the root folder of the repository. New version (1.5.6) of the app should have this fixed.
Upvotes: 1
Reputation: 471
Have you marked assume-unchanged ??
use git ls-files -v. If the character printed is lower-case, the file is marked assume-unchanged.
Then use git update-index --no-assume-unchanged --path/to files to see them in commit
Upvotes: 0