git - How to see all local commits which are not pushed to the remote branch? -
i using following commands see local commits not pushed remote branch not getting local commits.
git log git log origin/master..master
i want see at-least 10 local commits(only local).
this show not pushed commits branches
git log --branches --not --remotes
and must show local commits
git log origin/master..head
Comments
Post a Comment