-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scroll through git history #3
Comments
Hum that's a difficult feature to conceptualise:
|
You would need to load the history of all commits, then play them back. This will change all other files in the project as well. Plus you need to stash the current changes or prevent scrolling when there are changes. Another way would do If you like, apparently, you can keep track of one file as explained here: https://stackoverflow.com/questions/11128434/how-can-i-use-git-to-track-versions-of-a-single-file/13336304#13336304 |
Actually, Git does provide an API for viewing the contents of files at another revision, without checking them out; the command is So to implement the "scroll through git history" feature, you can:
|
@szhu this will be "read-only" |
@xtrasmal can you clarify what you are referring to? I believe both your solution and mine are solutions that only read from the Git API. |
This sounds cool and possibly lightly useful |
In Atom there is the "git-time-machine" Package from littlebee which enables a timeline where you can look at your older commits. |
Currently this scrolls through undo/redo history. In addition, it would be nice to scroll back through git history as well.
The text was updated successfully, but these errors were encountered: