After clicking git, the files that have changed since the last click are listed.
The question is how to get this list after another work on the local repo has been done.
eg.
$ git checkout feature/default2 $ git pull Updating 5420c70..b8eec49 Fast-forward application/configs/application.ini | 1 + application/modules/product/forms/Search.php | 3 ++ public/themes/default/bootstrap/buttons.less | 25 ----------- public/themes/default/css/cmspanel.css | 234 ++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------- public/themes/default/css/products.css | 57 ++++++++++++++++++++---- public/themes/default/css/style.css | 270 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------- public/themes/default/gfx/icons/menu-drop-dark.png | Bin 0 -> 160 bytes public/themes/default/gfx/icons/more.png | Bin 0 -> 120 bytes public/themes/default/layouts/scripts/footer.phtml | 26 ++++++++++- public/themes/default/layouts/scripts/gallery.phtml | 2 + public/themes/default/layouts/scripts/home.phtml | 2 + public/themes/default/layouts/scripts/layout.phtml | 2 + public/themes/default/layouts/scripts/products.phtml | 22 ++++----- public/themes/default/less/cmspanel.less | 26 +++++++++++ public/themes/default/less/nav.less | 4 +- public/themes/default/less/products.less | 61 +++++++++++++++++++++---- public/themes/default/less/style.less | 59 ++++++++++++++++++++++--- public/themes/default/less/widgets.less | 37 +++++++++++++++- public/themes/default/modules/cms/scripts/widgets/random.phtml | 6 +-- public/themes/default/modules/default/scripts/widgets/submenu.phtml | 2 +- public/themes/default/modules/product/scripts/index/view.phtml | 44 +++++++++--------- public/themes/default/modules/product/scripts/widgets/search.phtml | 16 +++++++ 22 files changed, 584 insertions(+), 315 deletions(-) create mode 100644 public/themes/default/gfx/icons/menu-drop-dark.png create mode 100644 public/themes/default/gfx/icons/more.png
5420c70 is the state before stretching.
How to determine what 5420c70 sha?
If I'm right, ORIG_HEAD is the state before the last push (any push, not pull, which made some changes).
I need some kind of magic alias like git checkout SOME_HEAD to make git checkout 5420c70 for me.
I am trying to set up a git review alias that should distinguish all files modified since the last attraction that have not been updated.
In the base case, something like this works:
git pull
but I'm looking for something like this:
git pull
source share