Compare commits
4 Commits
3e75138360
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fa9830934f | ||
|
|
34284f028d | ||
|
|
836c97c5b7 | ||
|
|
0ed9898bf1 |
@@ -11,6 +11,7 @@
|
|||||||
- [Git Teaの設定](#git-teaの設定)
|
- [Git Teaの設定](#git-teaの設定)
|
||||||
- [GitTeaにプッシュするための設定](#gitteaにプッシュするための設定)
|
- [GitTeaにプッシュするための設定](#gitteaにプッシュするための設定)
|
||||||
- [リポジトリをクローンする方法](#リポジトリをクローンする方法)
|
- [リポジトリをクローンする方法](#リポジトリをクローンする方法)
|
||||||
|
- [`https://git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git`](#httpsgitvrcworldtourcomvrc_world_tourvrcwt-testgit)
|
||||||
- [リポジトリごとの設定](#リポジトリごとの設定)
|
- [リポジトリごとの設定](#リポジトリごとの設定)
|
||||||
- [変更を保存・反映する(staging \& Commit \& Push)](#変更を保存反映するstaging--commit--push)
|
- [変更を保存・反映する(staging \& Commit \& Push)](#変更を保存反映するstaging--commit--push)
|
||||||
- [1. 変更したファイルを確認する](#1-変更したファイルを確認する)
|
- [1. 変更したファイルを確認する](#1-変更したファイルを確認する)
|
||||||
@@ -56,12 +57,15 @@ git config --global rebase.autostash true
|
|||||||
|
|
||||||
## リポジトリをクローンする方法
|
## リポジトリをクローンする方法
|
||||||
`<>code`または`<>コード`ボタンをクリックします
|
`<>code`または`<>コード`ボタンをクリックします
|
||||||
https箇所に下記のような表記があるのでClickしてコピー
|
- https箇所に下記のような表記があるのでClickしてコピー
|
||||||
`https://git.vrcworldtour.com/every_holiday/vrcwt-test.git`
|
|
||||||
|
|
||||||
自分のPCに戻り作業したい箇所に下記コマンドを実行します
|

|
||||||
|
|
||||||
|
`https://git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git`
|
||||||
|
-
|
||||||
|
- 自分のPCに戻り作業したい箇所に下記コマンドを実行します
|
||||||
```bash
|
```bash
|
||||||
git clone https://git.vrcworldtour.com/every_holiday/vrcwt-test.git
|
git clone https://git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git
|
||||||
Cloning into 'vrcwt-test'... remote: Enumerating objects: 3, done. remote: Counting objects: 100% (3/3), done. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) Receiving objects: 100% (3/3), done.
|
Cloning into 'vrcwt-test'... remote: Enumerating objects: 3, done. remote: Counting objects: 100% (3/3), done. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0) Receiving objects: 100% (3/3), done.
|
||||||
...
|
...
|
||||||
Resolving deltas: 100% (3/3), done.
|
Resolving deltas: 100% (3/3), done.
|
||||||
@@ -76,11 +80,11 @@ vrcwt-test #これがあれば成功
|
|||||||
先に色々プログラムなどを作ってからGitTeaを構築した際は微妙に方法が異なります。
|
先に色々プログラムなどを作ってからGitTeaを構築した際は微妙に方法が異なります。
|
||||||
```
|
```
|
||||||
# 新しくリポジトリを作るとき
|
# 新しくリポジトリを作るとき
|
||||||
git clone https://git.vrcworldtour.com/every_holiday/vrcwt-test.git
|
git clone https://git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git
|
||||||
```
|
```
|
||||||
```bash
|
```bash
|
||||||
# 既にプロジェクトをローカルで作ってる時
|
# 既にプロジェクトをローカルで作ってる時
|
||||||
git remote set-url origin https://every_holiday@git.vrcworldtour.com/every_holiday/vrcwt-test.git
|
git remote set-url origin https://every_holiday@git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
32
share/.gitignore
vendored
Normal file
32
share/.gitignore
vendored
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
# Unity generated
|
||||||
|
[Ll]ibrary/
|
||||||
|
[Tt]emp/
|
||||||
|
[Oo]bj/
|
||||||
|
[Bb]uild/
|
||||||
|
[Bb]uilds/
|
||||||
|
[Ll]ogs/
|
||||||
|
[Uu]ser[Ss]ettings/
|
||||||
|
[Mm]emoryCaptures/
|
||||||
|
[Rr]ecordings/
|
||||||
|
AI_DebugTool_Output/
|
||||||
|
|
||||||
|
# Package cache (Unity)
|
||||||
|
[Ll]ibrary/[Pp]ackage[Cc]ache/
|
||||||
|
|
||||||
|
# Visual Studio / Rider
|
||||||
|
.vs/
|
||||||
|
.idea/
|
||||||
|
*.csproj
|
||||||
|
*.sln
|
||||||
|
*.user
|
||||||
|
*.userprefs
|
||||||
|
*.pidb
|
||||||
|
*.booproj
|
||||||
|
*.svd
|
||||||
|
|
||||||
|
# OS junk
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Crash reports
|
||||||
|
sysinfo.txt
|
||||||
1
share/VRCWORLD.txt
Normal file
1
share/VRCWORLD.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# VRCワールド作成用.gitignoreです
|
||||||
Reference in New Issue
Block a user