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

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -