開発環境の設定ファイルをバージョン管理する
unix
Published: 2019-10-14

やったこと

開発環境の設定ファイルをバージョン管理します。

調査

バージョン管理するファイル確認

dotfiles というディレクトリで設定ファイルを管理しているとします。

今回は .bash_profile.vimrc を対象とします。

$ cd ~/dotfiles
$ tree -a .bash_profile .vimrc
.bash_profile [error opening dir]
.vimrc [error opening dir]

シンボリックリンクを適用する

link.sh

ln -sf ~/dotfiles/.vimrc ~/.vimrc
ln -sf ~/dotfiles/.bash_profile ~/.bash_profile
$ cd ~/dotfiles
$ link.sh

参考