git diff @{upstream}

Show differences between local branch and upstream branch

It compares the changes made in the local branch with the changes in the remote branch that the local branch is tracking. The {@upstream} symbol refers to the upstream branch of the current branch and can be used to easily reference it. This is useful to see what changes have been made locally compared to the remote branch, helping with tracking and synchronization.