mirror of
https://example.com
synced 2024-11-22 12:16:40 +09:00
git: make users pull main branch only
This commit is contained in:
parent
addfc66934
commit
851152a566
3 changed files with 5 additions and 5 deletions
|
@ -49,7 +49,7 @@
|
||||||
2. このリポジトリを複製し、リポジトリのディレクトリに移る
|
2. このリポジトリを複製し、リポジトリのディレクトリに移る
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://code.naskya.net/naskya/firefish
|
git clone --branch=main https://code.naskya.net/naskya/firefish
|
||||||
cd firefish
|
cd firefish
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -144,7 +144,7 @@ x86_64 アーキテクチャの Linux のマシン上では、[`registry.code.na
|
||||||
1. このリポジトリを複製し、リポジトリのディレクトリに移る
|
1. このリポジトリを複製し、リポジトリのディレクトリに移る
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://code.naskya.net/naskya/firefish
|
git clone --branch=main https://code.naskya.net/naskya/firefish
|
||||||
cd firefish
|
cd firefish
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
5. 元々 Firefish がインストールされていたディレクトリ (e.g., `./firefish`) と同じ名前でこのリポジトリをクローンする
|
5. 元々 Firefish がインストールされていたディレクトリ (e.g., `./firefish`) と同じ名前でこのリポジトリをクローンする
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://code.naskya.net/naskya/firefish firefish
|
git clone --branch=main https://code.naskya.net/naskya/firefish firefish
|
||||||
```
|
```
|
||||||
|
|
||||||
6. 必要なファイルを元のディレクトリからコピーする
|
6. 必要なファイルを元のディレクトリからコピーする
|
||||||
|
@ -136,7 +136,7 @@ Docker を使う場合には以下の `podman`, `podman-compose`, `--podman` を
|
||||||
4. 元々 Firefish がインストールされていたディレクトリ (e.g., `./firefish`) と同じ名前でこのリポジトリをクローンする
|
4. 元々 Firefish がインストールされていたディレクトリ (e.g., `./firefish`) と同じ名前でこのリポジトリをクローンする
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://code.naskya.net/naskya/firefish firefish
|
git clone --branch=main https://code.naskya.net/naskya/firefish firefish
|
||||||
```
|
```
|
||||||
|
|
||||||
5. 必要なファイルを元のディレクトリからコピーする
|
5. 必要なファイルを元のディレクトリからコピーする
|
||||||
|
|
|
@ -10,7 +10,7 @@ OLD_COMMIT=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
say 'Pulling changes from the remote repo...'
|
say 'Pulling changes from the remote repo...'
|
||||||
run 'git checkout -- package.json packages/backend/assets'
|
run 'git checkout -- package.json packages/backend/assets'
|
||||||
run 'git pull --ff --no-edit --autostash --strategy-option theirs'
|
run 'git pull --ff --no-edit --autostash --strategy-option theirs origin main'
|
||||||
|
|
||||||
NEW_COMMIT=$(git rev-parse --short HEAD)
|
NEW_COMMIT=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue