From fa9830934f1db7c56f6970b958103c57c5e23786 Mon Sep 17 00:00:00 2001 From: every_holiday Date: Thu, 19 Mar 2026 20:26:13 +0900 Subject: [PATCH] =?UTF-8?q?fix=20=E7=B5=84=E7=B9=94=E7=94=A8=E3=81=AB?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=E3=81=97=E3=81=9F=E3=81=AE=E3=81=A7remote?= =?UTF-8?q?=E5=85=88=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++------ {Shares => share}/.gitignore | 0 {Shares => share}/VRCWORLD.txt | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename {Shares => share}/.gitignore (100%) rename {Shares => share}/VRCWORLD.txt (100%) diff --git a/README.md b/README.md index 5f73e34..96e6e4b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ - [Git Teaの設定](#git-teaの設定) - [GitTeaにプッシュするための設定](#gitteaにプッシュするための設定) - [リポジトリをクローンする方法](#リポジトリをクローンする方法) - - [`https://git.vrcworldtour.com/every_holiday/vrcwt-test.git`](#httpsgitvrcworldtourcomevery_holidayvrcwt-testgit) + - [`https://git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git`](#httpsgitvrcworldtourcomvrc_world_tourvrcwt-testgit) - [リポジトリごとの設定](#リポジトリごとの設定) - [変更を保存・反映する(staging \& Commit \& Push)](#変更を保存反映するstaging--commit--push) - [1. 変更したファイルを確認する](#1-変更したファイルを確認する) @@ -61,11 +61,11 @@ git config --global rebase.autostash true ![コードボタン](images/code_button.png "コードボタンの場所") -`https://git.vrcworldtour.com/every_holiday/vrcwt-test.git` +`https://git.vrcworldtour.com/VRC_World_Tour/VRCWT-TEST.git` - - 自分のPCに戻り作業したい箇所に下記コマンドを実行します ```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. ... Resolving deltas: 100% (3/3), done. @@ -80,11 +80,11 @@ vrcwt-test #これがあれば成功 先に色々プログラムなどを作ってから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 # 既にプロジェクトをローカルで作ってる時 -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 ``` @@ -149,4 +149,4 @@ git pull origin main # リモートの変更を取り込む git push origin main # リモートへプッシュ git log --oneline # 履歴を簡潔に確認 git diff main origin/main # リモートとの差分確認 -``` \ No newline at end of file +``` diff --git a/Shares/.gitignore b/share/.gitignore similarity index 100% rename from Shares/.gitignore rename to share/.gitignore diff --git a/Shares/VRCWORLD.txt b/share/VRCWORLD.txt similarity index 100% rename from Shares/VRCWORLD.txt rename to share/VRCWORLD.txt