diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-16 19:23:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-16 19:23:18 +0000 |
commit | 43a123c1ae6613b3efeed291fa552ecd909d3acf (patch) | |
tree | fd92518b7024bc74031f78a1cf9e454b65e73665 /src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt | |
parent | Initial commit. (diff) | |
download | golang-1.20-upstream.tar.xz golang-1.20-upstream.zip |
Adding upstream version 1.20.14.upstream/1.20.14upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt')
-rw-r--r-- | src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt b/src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt new file mode 100644 index 0000000..afe407e --- /dev/null +++ b/src/cmd/go/testdata/vcstest/git/empty-v2-without-v1.txt @@ -0,0 +1,24 @@ +handle git + +env GIT_AUTHOR_NAME='Bryan C. Mills' +env GIT_AUTHOR_EMAIL='bcmills@google.com' +env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME +env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL + +git init + +at 2019-10-07T14:15:32-04:00 +git add go.mod +git commit -m 'add go.mod file without go source files' +git branch -m master +git tag v2.0.0 + +git log --oneline --decorate=short +cmp stdout .git-log + +-- .git-log -- +122733c (HEAD -> master, tag: v2.0.0) add go.mod file without go source files +-- go.mod -- +module vcs-test.golang.org/git/empty-v2-without-v1.git/v2 + +go 1.14 |