Skip to content

Commit 0e8a7b9

Browse files
committed
chore: Fix indent (#2962)
1 parent c5c6302 commit 0e8a7b9

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

CONTRIBUTING.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@
8383
0. [AtCoder NoviSteps](https://github.com/AtCoder-NoviSteps)にメンバー申請をします。[@KATO-Hiro](https://twitter.com/k_hiro1818)にDMなどでご連絡いただければ、GitHubで登録しているメールアドレスに招待メールが届きますので、承認してください。
8484
1. ターミナルなどを利用して、[本レポジトリ](https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps)の内容をローカル環境にダウンロードします。
8585

86-
`git clone https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps.git`
86+
`git clone https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps.git`
8787

8888
2. 作業ディレクトリを`AtCoderNovisteps`に変更します。
8989

9090
3. 本レポジトリの最新情報を反映できるように、ご自身のリモートレポジトリに登録します。`git remote -v`で登録状況を確認できます。
9191

92-
`git remote add root_branch https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps.git`
92+
`git remote add root_branch https://github.com/AtCoder-NoviSteps/AtCoderNoviSteps.git`
9393

9494
### (共通、Dockerのみ利用するユーザ向け) 開発環境のインストールとローカルの開発サーバを起動
9595

@@ -194,31 +194,31 @@
194194

195195
1. 本レポジトリの最新の内容を取得します。
196196

197-
`git fetch root_branch`
197+
`git fetch root_branch`
198198

199199
2. 取得した内容をご自身のローカル上のブランチにマージします。`staging`の部分を変えれば、別のブランチにすることも可能です。
200200

201-
`git merge root_branch/staging`
201+
`git merge root_branch/staging`
202202

203203
3. ご自身のリモートブランチを更新します。
204204

205-
`git push origin staging`
205+
`git push origin staging`
206206

207207
#### 作業用のブランチ作成からプルリクエスト作成まで
208208

209209
1. 作業用のブランチを作成します。
210210

211-
`git checkout -b <your-new-branch-for-working> origin/staging`
211+
`git checkout -b <your-new-branch-for-working> origin/staging`
212212

213-
例: GitHubのIssue番号や機能名・ドキュメントやバグの種類などを表すキーワードを使います。
213+
例: GitHubのIssue番号や機能名・ドキュメントやバグの種類などを表すキーワードを使います。
214214

215-
`git checkout -b "#998244353" origin/staging`
215+
`git checkout -b "#998244353" origin/staging`
216216

217-
`git checkout -b "feature/feature-name" origin/staging`
217+
`git checkout -b "feature/feature-name" origin/staging`
218218

219-
`git checkout -b "docs/docs-name" origin/staging`
219+
`git checkout -b "docs/docs-name" origin/staging`
220220

221-
`git checkout -b "bugfix/bug-name" origin/staging`
221+
`git checkout -b "bugfix/bug-name" origin/staging`
222222

223223
2. ソースコードやドキュメントの加筆・修正を行います。以下のコマンドを実行し、アプリが意図した通りに動作するか確認してください。
224224

@@ -244,25 +244,25 @@
244244

245245
3. 2.の内容をレポジトリに反映します。コミットメッセージは、加筆・修正した内容を端的に表したものであることが望ましいです。
246246

247-
`git add .`
247+
`git add .`
248248

249-
`git commit -m "your-commit-message (#IssueID)"`
249+
`git commit -m "your-commit-message (#IssueID)"`
250250

251-
例:
251+
例:
252252

253-
`git commit -m ":sparkles: Add hoge feature (#998244353)"`
253+
`git commit -m ":sparkles: Add hoge feature (#998244353)"`
254254

255-
`git commit -m ":books: Update README (#1333)"`
255+
`git commit -m ":books: Update README (#1333)"`
256256

257-
`git commit -m ":pencil2: Fix typo (#10007)"`
257+
`git commit -m ":pencil2: Fix typo (#10007)"`
258258

259259
4. プルリクエストを作成する前に、加筆・修正した内容を確認します。
260260

261-
`git diff origin <your-current-branch>`
261+
`git diff origin <your-current-branch>`
262262

263263
5. 本レポジトリに更新内容を反映させます。
264264

265-
`git push origin <your-current-branch>`
265+
`git push origin <your-current-branch>`
266266

267267
6. プルリクエストを作成します。
268268

0 commit comments

Comments
 (0)