To Use CommitList Plug-in¶
The CommitList plug-in is installed by default with EmEditor Professional. This plug-in shows the current changes and the commit history of a Git repo. To use the CommitList plug-in, click on the Plug-ins bar. Or in the Tools menu, point to Plug-ins, and then click CommitList.
Some features of CommitList require Git to be installed and callable from command prompt with the command Click on the Commit List button to view the commit history. When a commit is selected, the right panel displays the commit details and the list of files changed on this commit. Right-click on a file in the list and select Compare with Previous to see what changed to the file on this commit. In the commit list, you can right-click on a commit and select Copy to copy the commit details. Browse Files At Commit will show the directory tree when the commit was made. And Compare Commits will show you the differences between two commits. You can checkout the commit with Checkout (--detach), which creates a detached HEAD. If you want to create a new branch from the commit, select Create New Branch.... You can filter the list by clicking on Filter History…. Enter the Filter String, select a Filter By option, then click Filter. The commit list now only shows commits that match the filter. The Cancel Filter button next to the Filter History… button cancels the filter. The left panel shows a list of branches in the repo. The context menu shows commands relating to branches. View Branch: Show the list of commits for that branch. Compare Branches: When two branches are selected, you can compare the files between those branches. Refresh: Refreshes the information displayed in the CommitList bar Checkout Branch: Switch to the branch Create New Branch...: Create new branch from the selected branch and checkout the new branch. Delete Branch: Delete the selected branch Delete Remote Branch: Deletes the remote branch that is tracked by the branch. (Calls the command If a file that is in the current repo is opened in the editor, the View History For Current Document button can be selected. It lists any commits that include changes to the current file. Right-clicking on a commit will show four options. Show Commit jumps to that commit in the main commit list. Compare with Previous compares the file with its previous revision. Compare File at Commits compares the file at two different commits. Compare with File in Working Tree compares the file at the selected commit and the work tree version. Press the F6 key or ESC key to set the keyboard focus back to the editor.git
.Commit list¶
git push -v <upstream> --delete <branch>
)Tips¶