Viewing unpushed Git commits

前端 未结 25 2972
Happy的楠姐
Happy的楠姐 2020-11-22 08:05

How can I view any local commits I\'ve made, that haven\'t yet been pushed to the remote repository? Occasionally, git status will print out that my branch is X

25条回答
  •  半阙折子戏
    2020-11-22 09:03

    I use the following alias to get just the list of files (and the status) that have been committed but haven't been pushed (for the current branch)

    git config --global alias.unpushed \
    "diff origin/$(git name-rev --name-only HEAD)..HEAD --name-status"
    

    then just do:

    git unpushed
    

提交回复
热议问题