You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git meta diff shows you changes from both disk and the index. This is inconsistent with git diff which shows only the unstaged changes. You need git diff --cached to see the staged changes, and git diff HEAD for both. Please make git meta diff usage consistent with git diff.