0
0

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 1 year has passed since last update.

[Git] リポジトリに個人メモ・シェルを残す

Posted at

はじめに

そもそも情報は共有しろというのは自明であるが、開発を行っているとドキュメント化したりGit管理したりするほどでもないメモやスクリプトが発生する。いつものメモ帳に記しておくことも可能だが、Git管理下のディレクトリにあった方が都合がいいケースもある。そんなケースに対応する私が採用している方法を紹介する。

.git/info/exclude に書く

ご存知の方も多いと思うが、Gitには .gitignore とは別にローカルリポジトリごとに除外パターンを設定する機能がある。 .git/info/exclude である。 .git/info/exclude を以下、例のように書くことで、一時的に発生するメモやスクリプトに対応している。

.git/info/exclude
_*.sh
_*.md
_*.txt
_*.log

例では _debug.sh_memo.txt のようなファイル名は除外される。ドキュメントやスクリプト管理、延いては開発ルールにまでまたがる微妙な内容ではあるが、環境やリポジトリに合わせて適宜変更して活用してもらえると嬉しい。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?