将 swift 游乐场添加到 public GitHub 存储库时,我需要推送哪些文件
What files do I need to push when adding a swift playground to a public GitHub repo
我正在向 public GitHub 存储库添加一些 swift 游乐场,但我不确定要提交和推送哪些文件。
这是一个游乐场中的文件
File.playground/Contents.swift
File.playground/contents.xcplayground
File.playground/playground.xcworkspace/contents.xcworkspacedata
File.playground/playground.xcworkspace/xcuserdata/username.xcuserdatad/UserInterfaceState.xcuserstate
File.playground/xcuserdata/username.xcuserdatad/xcschemes/xcschememanagement.plist
注意:我用 File
替换了游乐场名称,用 username
替换了我的用户名
如果您还没有将这些文件添加到索引中(如果您已经添加但未提交,您可以执行 git reset
,取消暂存它们),您可以添加 .gitignore
, 作为其内容, 一种形式 github/gitignore
Swift.gitignore
.
然后执行 git status
:您可以添加、提交和推送仍然列出的文件。
我正在向 public GitHub 存储库添加一些 swift 游乐场,但我不确定要提交和推送哪些文件。
这是一个游乐场中的文件
File.playground/Contents.swift
File.playground/contents.xcplayground
File.playground/playground.xcworkspace/contents.xcworkspacedata
File.playground/playground.xcworkspace/xcuserdata/username.xcuserdatad/UserInterfaceState.xcuserstate
File.playground/xcuserdata/username.xcuserdatad/xcschemes/xcschememanagement.plist
注意:我用 File
替换了游乐场名称,用 username
如果您还没有将这些文件添加到索引中(如果您已经添加但未提交,您可以执行 git reset
,取消暂存它们),您可以添加 .gitignore
, 作为其内容, 一种形式 github/gitignore
Swift.gitignore
.
然后执行 git status
:您可以添加、提交和推送仍然列出的文件。