Fossil

Update of "Fossil 2.0"
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: aefb0fd961531f8b9b34ede4fc03dd008d51d020
Page Name:Fossil 2.0
Date: 2015-03-05 20:06:30
Original User: andygoth
Mimetype:text/x-markdown
Parent: 4ab62457233702c36f52cfd2ea5330ca79e98b0c (diff)
Next db84b952ee0e9709d5a6e950e6637c54799f6144
Content

Status:

Core Principles:

Web Interface Enhancements:

Command-line Interface:

Implementation Strategy:


On 2015-02-06 02:10:35 UTC nobody (claiming to be sean) added:


On 2015-02-06 02:31:59 UTC nobody (claiming to be isxek) added:


On 2015-02-24 22:12:00 UTC andygoth added:

Show cherrypick and backout merges in timeline and context.

Differentiate between normal, cherrypick, and backout merges by the shape of the arrowhead.

The merge lines may also be shown in different colors, e.g. green for cherrypick and red for backout.

Suggest allowing this feature to be configurable via theme. Also may be a user checkbox to show or hide cherrypick/backout merges.


On 2015-03-05 20:06:30 UTC andygoth added:

Require directory name argument to open command

One thing that repeatedly surprised me when learning Fossil was that the open command opens the repository into the current working directory. This left me either confused at there being no apparent effect (except a hidden file called .fslckout, in the case of a new repository) or angry about Fossil making a big mess in my current directory (not easily undone because close doesn't delete).

I would have picked up on this behavior instantly had the open command required the directory name as an argument following the repository argument. The directory would be created if it doesn't already exist. For example:

fossil new repo.fossil
fossil open repo.fossil repo
cd repo

Opening into the current directory could still be done by supplying "." as the directory name.

fossil new repo.fossil
cd repo
fossil open ../repo.fossil .

This change would resemble the behavior of the fusefs command which requires a directory name argument.