当前位置:   article > 正文

使用Github托管Unity项目_如何创建github仓库并在unity中引入packages

如何创建github仓库并在unity中引入packages

准备工作

  1. 在本机生成ssh密钥
ssh-keygen -t rsa -C "你的邮箱地址"
  • 1
  1. 点击回车后会出现生成的密钥路径,我们直接打开密钥复制下来。
  2. github官网添加我们的本机密钥
    进入Github官网,点击设置,选择SSH and GPG keys
    Alt
  3. 点击new SSH key,将我们刚才在本机生成的ssh密钥放入key中,并起一个名字(Title随便填)
    Alt
  4. 最后点击Add SSH key,之后显示成功,我们回到本机通过 ssh -T git@github.com 命令测试是否成功!
    Alt

Github创建仓库

  1. 进入Github,右上角添加新仓库
    在这里插入图片描述
  2. 填入仓库名称和仓库是否公开
    在这里插入图片描述

创建本地git项目

  1. 打开我们的项目目录,右击 Open Git Bash here
    在这里插入图片描述
  2. 对项目进行Git初始化 命令:git init
    在这里插入图片描述
  3. 初始化成功后,创建.gitignore文件,这个文件配置这那些文件需要传到git仓库。
touch .gitignore
  • 1
  1. 打开.gitignore文件,把下面代码粘贴进入,这是官方给出的标准Unity项目配置。
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
#
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/

# MemoryCaptures can get excessive in size.
# They also could contain extremely sensitive data
/[Mm]emoryCaptures/

# Recordings can get excessive in size
/[Rr]ecordings/

# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*

# Autogenerated Jetbrains Rider plugin
/[Aa]ssets/Plugins/Editor/JetBrains*

# Visual Studio cache directory
.vs/

# Gradle cache directory
.gradle/

# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.mdb
*.opendb
*.VC.db

# Unity3D generated meta files
*.pidb.meta
*.pdb.meta
*.mdb.meta

# Unity3D generated file on crash reports
sysinfo.txt

# Builds
*.apk
*.aab
*.unitypackage
*.app

# Crashlytics generated file
crashlytics-build.properties

# Packed Addressables
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*

# Temporary auto-generated Android Assets
/[Aa]ssets/[Ss]treamingAssets/aa.meta
/[Aa]ssets/[Ss]treamingAssets/aa/*

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  1. 之后通过git status查看当前状态
  2. 将文件添加至缓存区,命令行中输入
git add .
  • 1
  1. 将缓存区的内容加到本地仓库中
git commit -m "提交信息备注"
  • 1

本地git项目与Github仓库进行远程连接

  1. 本地仓库和Git仓库进行连接
git remote add origin git地址;例:https://github.com.git
  • 1
  1. 创建一个分支
git branch -M main
  • 1
  1. 将文件上传到分支下
git push -u origin main
  • 1

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/715223
推荐阅读
相关标签
  

闽ICP备14008679号