3 Matching Annotations
  1. Oct 2024
    1. Special Marks on Cards

      Eustace Miles suggests the use of "special marks on cards" (annotations) in the top left corners, though he doesn't provide specific examples of how they might be used in practice. He does mention "The Abbreviations and Marks need be clear only to the Writer [sic] himself. They save ever so much time."

      • "X": As contrasted with—
      • "Q": Quotation
      • Black triangle in corner: important
      • Arrow pointing to corner of card: As compared with
      • Angled parallel lines in the bottom right corner of card: End of Paragraph (or Chapter).
      • Arrow pointing to the corner of card with hash mark: Connecting Link between two Sentences or Paragraphs, etc.
      • Upside down V (or caret): An omission, e.g. to be filled in afterwards
      • ?: A doubtful point
  2. May 2015
    1. If you want a deeper explanation skip down to "The long version". ref~ is shorthand for ref~1 and means the commit's first parent. ref~2 means the commit's first parent's first parent. ref~3 means the commit's first parent's first parent's first parent. And so on. ref^ is shorthand for ref^1 and means the commit's first parent. But where the two differ is that ref^2 means the commit's second parent (remember, commits can have two parents when they are a merge). The ^ and ~ operators can be combined.