> You can use `git log --name-status` to have git show you the files > that were modified.
I'll take the previous example, so in one of the commits if I do a git log --name-status I get this commit e9f4a0a595eaa82571e1dea55d672ec82da5d2c8 Author: Mateusz Paprocki <[email protected]> Date: Wed May 4 18:26:49 2011 -0700 Fixed tests after keep_sign was removed M sympy/core/tests/test_evalf.py M sympy/core/tests/test_expr.py M sympy/core/tests/test_numbers.py M sympy/functions/special/tests/test_gamma_functions.py M sympy/functions/special/tests/test_spec_polynomials.py M sympy/functions/special/tests/test_spherical_harmonics.py M sympy/integrals/tests/test_rationaltools.py M sympy/polys/tests/test_partfrac.py M sympy/polys/tests/test_polyfuncs.py M sympy/polys/tests/test_polyroots.py M sympy/series/tests/test_nseries.py M sympy/series/tests/test_series.py M sympy/simplify/tests/test_simplify.py M sympy/solvers/tests/test_ode.py M sympy/solvers/tests/test_polysys.py M sympy/solvers/tests/test_solvers.py This looks ugly and files in various subsystems were changed making it impossible to infer which subsystem's behaviour was actually changed. Consider a commit that makes several minor changes to sympy/core. There are approximately 25 files there and if changes are made to all of them then it will reflect with the above command. Dont forget the tests too. My original point was, that for the purposes of release documentation I do *not* want to see the code, I am only interested in what it does. Its somewhat troublesome having to see which files were modified when one can simply specify which folder's content was changed. Anyway, bugfixes normally start with issue ###: blah blah which is clear and concise. The same can be done for non bugfix patches. > -- > Robert Kern > > "I have come to believe that the whole world is an enigma, a harmless > enigma that is made terrible by our own mad attempt to interpret it as > though it had an underlying truth." > -- Umberto Eco I bought The Black Swan a few days ago, its awesome! -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
