PyCharm Edu 2018.2 Help

Local History

PyCharm Edu uses Local History to constantly track all changes made to projects. Unlike version control systems that show differences between specific commits, Local History automatically maintains revisions for all meaningful events. This produces a detailed timeline of changes in project structure and source code, with the ability to roll back to any point if necessary.

To view Local History:

  • On the VCS menu, point to Local History, and then click Show History.

Local History contains a list of revisions and shows differences between them. When viewing Local History for a directory, revisions show only names of files that changed in the directory. Revisions for a specific file contain changes to the contents of the file.

To revert to a specific revision:

  • Select it from the list and click Revert on the toolbar.

This adds a new revision to Local History.

Viewing Local History for source code elements

In some cases, you may not want to view Local History for the whole file, but only for specific source code elements: classes, their members (fields and methods), or any selected fragment of text.

To view Local History for a class:

  • Right-click the class name in the editor, point to Local History, and then click Show History for Class.

To view Local History for a class field:

  • Right-click the field name in the editor, point to Local History, and then click Show History for Field.

To view Local History for a class method:

  • Right-click the method name in the editor, point to Local History, and then click Show History for Method.

To view Local History for a source code fragment:

  • Right-click the selected text in the editor, point to Local History, and then click Show History for Selection.

Adding labels to Local History

Local History contains revisions with timestamps, which are not easy to navigate. Some revisions are automatically marked with labels based on predefined events: running tests, deploying apps, committing changes, etc. You can also add custom labels to mark specific milestones in Local History.

To add a label to the current revision:

  1. On the VCS menu, point to Local History, and then click Put Label.

  2. In the Put Label dialog box, type the label name and click OK.

Sharing Local History

Local History does not support shared access, it is intended only for personal use. However, you can create a patch file with changes relative to a specific revision, which you can share with others.

To generate a patch:

  • Select the relevant revision in Local History and click Create Patch on the toolbar.

Viewing recent changes

Besides the detailed Local History, PyCharm Edu provides a summary of major recent changes to all projects.

To view recent changes:

  • On the View menu, click Recent Changes.

You can select the change you are interested in to review differences and revert it if necessary.

Retention period for Local History

By default, Local History is configured to store revisions for the last 5 working days (that is, days when the file was modified).

To change the retention period of Local History:

  1. On the Help menu, click Find Action or press Ctrl+Shift+A.

  2. Find and open the Registry editor.

  3. Modify the value of the localHistory.daysToKeep parameter.

  4. Click Close and restart PyCharm Edu for the changes to take effect.

Alternatively, you can pass the localHistory.daysToKeep parameter as a Java property by configuring JVM options. For example, to set retention to 30 days, add the following line to the JVM options file:

-DlocalHistory.daysToKeep=30

Location of Local History files

Local History is stored as binary files under the LocalHistory subdirectory in the PyCharm Edu system directory:

Syntax
%HOMEPATH%\.<product><version>\system
Example
C:\Users\JohnS\.PyCharm2018.2\system
Syntax
~/Library/Caches/<product><version>
Example
~/Library/Caches/PyCharm2018.2
Syntax
~/.<product><version>/system
Example
~/.PyCharm2018.2/system

You can change the location of the system directory using the idea.system.path property.

Last modified: 7 December 2018