1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Gitリポジトリを作った後にやること

Posted at

これは何

  • 自分用のメモ
  • AWS環境の構築をしたりLambda Functionを書くためにGitリポジトリを作った直後、この設定だけはやっておく
  • macOS での作業を想定

git-secrets 設定

AWSのアクセスキーを外部に漏らさないために設定する

クラウド破産しないように git-secrets を使う

$ cd /path/to/your/repository
$ git secrets --install

.gitignore 作成

gitignore.io もしくは gibo を使って .gitignore を生成する。

## gitignore.io を使う場合
## macOSのターミナルで .gitignore にコピペする
$ pbpaste > .gitignore
## gibo を使う場合
# gibo list で対応するフォーマットを探す
$ gibo list

# gibo dump で .gitignore 出力
$ gibo dump macOS >> .gitignore
$ gibo dump Python >> .gitignore
$ gibo dump VirtualEnv >> .gitignore

(Optional) .envrc を退避

direnv で環境変数にAWSのクレデンシャルを埋めている場合は .gitignore に追記する

$ echo "*.envrc" >> .gitignore
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?