The @{u}
alias refers to the current branch’s upstream branch. So, when on main, executing git log @{u}
would typically be the same as git log origin/main
.
The @{u}
alias refers to the current branch’s upstream branch. So, when on main, executing git log @{u}
would typically be the same as git log origin/main
.