Text file src/cmd/go/testdata/vcstest/fossil/hello.txt

     1  handle fossil
     2  
     3  env USER=rsc
     4  fossil init --date-override 2017-09-22T01:15:36Z hello.fossil
     5  fossil open --keep hello.fossil
     6  
     7  fossil add hello.go
     8  fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
     9  
    10  fossil timeline --oneline
    11  cmp stdout .fossil-timeline
    12  
    13  -- .fossil-timeline --
    14  d4c7dcdc29 hello world
    15  58da0d15e9 initial empty check-in
    16  +++ no more data (2) +++
    17  -- hello.go --
    18  package main
    19  
    20  func main() {
    21  	println("hello, world")
    22  }
    23  

View as plain text