Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Local history in Atom Editor

I've found a package in atom packages but I haven't downloaded it yet. Is there any way to check local history as it is in Eclipse?

I use git. But when I diff the file, I see all changes. However, I want to get chronological changes, how file is envolved.

like image 858
Yigit Can Avatar asked Sep 24 '22 03:09

Yigit Can


2 Answers

You're looking for the git-history package:

Git History Package for Atom

View previous versions of any file known to git. By default, the plugin will now show a diff with the selected version. This can be disabled in the settings.

apm install git-history

like image 109
Hatchet Avatar answered Sep 29 '22 00:09

Hatchet


Here is another package for viewing a file's Git history.

Git Time Machine - a package for Atom that allows you to travel back in time! It shows visual plot of commits to the current file over time and you can click on it on the timeplot or hover over the plot and see all of the commits for a time range.


(source: github-camo.com)

If you'd like to see this package in action, I made a short YouTube video demonstrating the package. http://www.youtube.com/watch?v=cFAzqvYoHJs&t=7m58s

like image 35
Clifford Fajardo Avatar answered Sep 28 '22 23:09

Clifford Fajardo