move docsフォルダを作成して移動

This commit is contained in:
every_holiday
2026-03-19 18:40:45 +09:00
parent 48c1f92898
commit 3de0ecc31e
2 changed files with 23 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
# VRCWT-TEST
TEST用リポジトリ TEST用リポジトリで何を行っても大丈夫です
- clone方法 - clone方法
`<>code`または`<>コード`ボタンをクリックします `<>code`または`<>コード`ボタンをクリックします
@@ -9,18 +9,35 @@ https箇所に下記のような表記があるのでClickしてコピー
自分のPCに戻り作業したい箇所に下記コマンドを実行します 自分のPCに戻り作業したい箇所に下記コマンドを実行します
```bash ```bash
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. 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.
...
Resolving deltas: 100% (3/3), done.
``` ```
指定したリポジトリが入っていればOK 指定したリポジトリが入っていればOKです
```bash ```bash
kennypi@kpi5 ~/work$ ls kennypi@kpi5 ~/work$ ls
vrcwt-test vrcwt-test #これがあれば成功
```
## リポジトリごとの設定
先に色々プログラムなどを作ってからGitTeaを構築した際は微妙に方法が異なります。
```
# 新しくリポジトリを作るとき
git clone https://git.vrcworldtour.com/every_holiday/vrcwt-test.git
```
```bash
# 既にプロジェクトをローカルで作ってる時
git remote set-url origin https://every_holiday@git.vrcworldtour.com/every_holiday/vrcwt-test.git
``` ```
# GitTeaにプッシュするための設定 # GitTeaにプッシュするための設定
GitTeaのサーバーに設定をプッシュするために行います。
```bash ```bash
# 「署名」の設定 アカウント登録した時の名前とメールアドレスにする # 「署名」の設定 アカウント登録した時の名前とメールアドレスにするメアドはxxxxとか適当にしてください
git config --global user.name "every_holiday" git config --global user.name "every_holiday"
git config --global user.email "xxx@gmail.com" git config --global user.email "xxx@gmail.com"
@@ -31,13 +48,6 @@ git config --global credential.helper store
git config --global rebase.autostash true git config --global rebase.autostash true
``` ```
# リポジトリごとの設定
```bash
# 既にプロジェクトをローカルで作ってる時
git remote set-url origin https://every_holiday@git.vrcworldtour.com/every_holiday/vrcwt-test.git
# 新しくリポジトリを作るとき
git clone https://git.vrcworldtour.com/every_holiday/vrcwt-test.git
```
```bash ```bash