Text file src/cmd/go/testdata/vcstest/git/no-tags.txt

     1  handle git
     2  
     3  env GIT_AUTHOR_NAME='Bryan C. Mills'
     4  env GIT_AUTHOR_EMAIL='bcmills@google.com'
     5  env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
     6  env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
     7  
     8  git init
     9  
    10  at 2019-07-15T17:20:47-04:00
    11  git add go.mod main.go
    12  git commit -m 'all: add go.mod and main.go'
    13  git branch -m master
    14  
    15  git log --oneline --decorate=short
    16  cmp stdout .git-log
    17  
    18  -- .git-log --
    19  e706ba1 (HEAD -> master) all: add go.mod and main.go
    20  -- go.mod --
    21  module vcs-test.golang.org/git/no-tags.git
    22  
    23  go 1.13
    24  -- main.go --
    25  package main
    26  
    27  func main() {}
    28  

View as plain text