You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/SystemModules.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Thus we must create `Package.swift` and initialize a Git repository with at leas
56
56
CJPEG$ touch Package.swift
57
57
CJPEG$ git init
58
58
CJPEG$ git add .
59
-
CJPEG$ git ci -m "Initial Commit"
59
+
CJPEG$ git commit -m "Initial Commit"
60
60
CJPEG$ git tag 1.0.0
61
61
62
62
* * *
@@ -128,7 +128,7 @@ A package is a Git repository with semantically versioned tags and a `Package.sw
128
128
129
129
CJasPer$ git init
130
130
CJasPer$ git add .
131
-
CJasPer$ git ci -m "Initial Commit"
131
+
CJasPer$ git commit -m "Initial Commit"
132
132
CJasPer$ git tag 1.0.0
133
133
134
134
**PLEASE NOTE!** The package manager clones _the tag_. If you edit the `module.modulemap` and don’t `git tag -f 1.0.0` you will not build against your local changes.
0 commit comments