git - Show incomming commits in branch for bare repo -


currently, our git workflow not normal way feature branches, have development , master branch. changes go development branch, , @ point branch merged master branch , stabilized there.

as i'd code review on development branch, need way of knowing commits pushed since last code review. develop on branch, cannot in same local repository, created bare repository (via git clone --bare). managed switch development branch afterwards (via git symbolic-ref head refs/heads/development), haven't found way yet see incoming commits.

i tried first git fetch , gitk head..fetch_head (as shown here), shows no commits.

what doing wrong? there maybe better approach problem?

we're using bitbucket, , use commit feed see changed, missed commits way pushed day after committed, , hence did not appear in feed. if know other way see changes since last review using bitbucket, option.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -