2026-03-19 16:52:29 +09:00
2026-03-19 16:52:29 +09:00

VRCWT-TEST

TEST用リポジトリ

  • clone方法 <>codeまたは<>コードボタンをクリックします https箇所に下記のような表記があるのでClickしてコピー https://git.vrcworldtour.com/every_holiday/vrcwt-test.git

自分のPCに戻り作業したい箇所に下記コマンドを実行します

kennypi@kpi5 ~/work$ git clone https://git.vrcworldtour.com/every_holiday/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.

指定したリポジトリが入っていればOK

kennypi@kpi5 ~/work$ ls                                       
vrcwt-test

remote登録

git remote set-url origin https://git.vrcworldtour.com/every_holiday/VRCWT-TEST.git

#git stash git stash pop をやるのは面倒なのでgit pull するだけで自動退避・復元してくれる用に設定
git config --global rebase.autostash true
                                                                                                                      
# 自分の変更と誰かの変更が競合(コンフリクト)すると問題が発生するのでリモートの差分を取ってきます
git fetch origin

git pull origin main
# remoteと同じになってればOK

git diff main origin/main
git log -p -1
Description
TEST用リポジトリ
Readme 402 KiB
Languages
Text 100%