nvie / gitflow

Git extensions to provide high-level repository operations for Vincent Driessen's branching model.
http://nvie.com/posts/a-successful-git-branching-model/
Other
26.63k stars 2.66k forks source link

implement `git flow diff <feature_name>` :feature request #400

Open KES777 opened 9 years ago

KES777 commented 9 years ago

This command will allow users to see what were changed when implementing feature

Now I can dig log for some feature: git log --graph --decorate --pretty=oneline --abbrev-commit | grep

seek where it is started git log --graph --decorate --pretty=oneline --abbrev-commit f323af0 * f323af0 (HEAD, develop) Merge branch 'feature/' in |\ | * b1b2d98 show ip count for operator | * a30ef6d Change text label for tarif |/ * 2d9a1f9 (master) change base url remove vim files * 2c35790 initial

and see what were changed when implementing git diff 2d9a1f9 f323af0

But we will be glad to have: git flow diff