When I try to execute any of these commands:
git branch git branch -a git pull git log --pretty=format:"%C(yellow)%h%Cred%d\\ %Cblue[%cn]\\%Creset %s" --decorate --graph git log --online --decorate --graph
I get an error
fatal: Reference has invalid format: 'refs/heads/master~'
But the following commands work:
git log --oneline --graph
Launch
find ./ -iname "*conflict*"
does not return any results.
The output of find ./ -name "*master*" | grep "\./\.git" find ./ -name "*master*" | grep "\./\.git" is
./.git/logs/refs/heads/master ./.git/logs/refs/heads/master~ ./.git/logs/refs/remotes/origin/master ./.git/refs/heads/master ./.git/refs/heads/master~ ./.git/refs/remotes/origin/master
I don't know if this helps, but I see master~ there.
Any idea what could be wrong? What additional information can I provide you?
git
trusktr
source share