0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

UE5のプロジェクトをGithubで管理する方法

Last updated at Posted at 2024-10-11

この記事について

UE5のプロジェクトをGithubで管理したいが、プロジェクトの容量が大きすぎてpush出来ない。
.gitignoreを導入することによって、この問題を解決する。

環境

Unreal Engine 5.4.4

リポジトリを作成する際に

作成する際の設定画面で.gitignoreを追加しましょう。
unreal engine.png

一度リポジトリに存在する.gitignoreをpullする

まずは初期化

shell
$ git init

次にリモートリポジトリを追加。

shell
$ git remote add origin リポジトリのhttpsアドレス

リポジトリから.gitignoreをPullする。

shell
$ git pull origin main

以下いつものgitの操作。commitに少しだけ時間がかかるはず。

shell
$ git add .
$ git commit -m "hoge"
$ git push -u origin main

P.S

別のプロジェクトをpushした後、別のファイルでリポジトリをpullするとなぜか以下のエラーが発生。

shell
ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

プロジェクトに発生していた.gitファイルをゴミ箱に送ってgit initからやり直すと上手く行った。
Screenshot 2024-10-11 184113.png

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?