I'm trying to understand if it is possible to determine how a particular line changes "in the future" using git log
, i.e., going to an old commit using git checkout
and using some variant git log -L
to see the future of that line.
Here's what I'm doing:
git clone https://github.com/jMetal/jMetal
cd jMetal
git checkout b5a3d3f2701bab98318a92eaf781653392494b43
git log -L 37,37:README.md
This one only allows me to go backwards though. Is it possible to go forward in a similar way? As far as I understand, git clone
should download the entire version history so I'm pretty sure the required information is somewhere already.