2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

UnityのプロジェクトをGitHubにプッシュするまでの流れ

Posted at

UnityのプロジェクトをGitHubで管理するときに毎回初期設定を調べながらやっているので備忘録として書いておきます。

手順

Unity側で行う作業

  1. Unityのプロジェクトを立ち上げるのみ!

GitHubで行う作業

  1. リポジトリ新規作成
  2. 以下項目を入力
    • Repository name : プロジェクト名
    • Description : プロジェクトの説明(記載する必要なし)
    • Public/Private : 公開ならPublic、非公開ならPrivate
    • README : プロジェクトの詳細(後で記載できる)
    • Add .gitignore : Unityを選択(リモートリポジトリに必要のないファイルを除いてくれる)
    • Choose a license: ライセンス(種類色々あるので別途調べる)
  3. Create repositoryを押す

ローカルで行う作業

  1. Unityプロジェクトの階層まで行きローカルリポジトリを作成
    git init
    git remote add origin [リモートリポジトリのURL]
    
  2. .gitignoreをリモートから持ってくる
    git pull origin master
    
  3. あとは通常通り
    git add .
    git commit -m "first commit"
    git push origin master
    
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?