charlesthomas / magpie

Git-backed Evernote replacement
MIT License
645 stars 50 forks source link

Add feature to rename notes #72

Closed cooperra closed 8 years ago

cooperra commented 8 years ago

Now you can edit note names alongside their content.

Doing so is a two-step process in the back end:

  1. Commit the content like normal
  2. Rename (git mv) the note file and commit

Currently, git mv uses -f to ensure it works, but in the future, we'll probably want something more robust like branching or notifying the user that they should choose another name.

Related to issue #46.