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
f323af0 (HEAD, develop) Merge branch 'feature/' in
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
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