August 2019
Beginner to intermediate
798 pages
17h 2m
English
A tag is a way of identifying specific release versions of your code. You can think of a tag as a branch that never changes.
You can create a new lightweight tag as follows:
$ git tag c7.0
You can find information about a specific tag as follows:
$ git --no-pager show v1.0.0
commit f415872e62bd71a004b680d50fa089c139359533 (tag: v1.0.0)
Author: Mihalis Tsoukalos <mihalistsoukalos@gmail.com>
Date: Sat Mar 2 20:33:58 2019 +0200
Initial version 1.0.0
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..c4928c5
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module github.com/mactsouk/myModule
+
+go 1.12
diff --git a/myModule.go b/myModule.go
index e69de29..fa6b0fe 100644
--- a/myModule.go
+++ b/myModule.go
@@ -0,0 ...Read now
Unlock full access