Skip to content

kure-kosen/cho_kure_docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ちょっくれ開発環境構築

未着手の箇所

  • プロジェクト管理方法
    • ラベルについて
    • PRの出し方について
    • レビューとマージについて
      • レビューの基準について
      • feature/dev へのマージの方法について
      • master へのマージの方法について
    • デプロイについて

GitHubの設定

GitHubのアカウントを作成しておく。 下記コマンドを順に実行する。

mkdir ~/.ssh
chmod 700 ~/.ssh
cd ~/.ssh
ssh-keygen -t rsa -f github
chmod 600 github
touch config
printf 'Host github.com\n  HostName github.com\n  IdentityFile ~/.ssh/github\n  User git\n' >> config
cat github.pub | pbcopy

GitHub Settings - SSH Keysへアクセスする。 New SSH key に github.pub をコピーする(上記コマンドを実行していたらすでにコピーされているので貼り付けるだけ)。

$ ssh github.com
Hi << Your user id >>! You've successfully authenticated, but GitHub does not provide shell access. Connection to github.com closed.

とコマンドを入力して出力が上記のものになったら成功。

Windows環境構築

Windows編にて解説している。

Mac環境構築

Mac編にて解説している。

プロジェクト管理方法

プロジェクト管理方法にて解説している。

Releases

No releases published

Packages

No packages published