LoginSignup
0
1

More than 5 years have passed since last update.

dotfilesをgitで管理

Last updated at Posted at 2017-05-07

まず、dotfilesにGITで管理したいのをまとめます。

まとめる先のファイルを作ります。

$ mkdir dotfiles

Windowsで言うショートカットを作成します。
例) 

$ ln -sf ~/dotfiles/.tmux.conf  ~/.tmux.conf
$ ln -sf ~/dotfiles/.vimrc ~/.vimrc

GITにアップロードします。

$ git init
$ git add .
$ git commit -m "commit message"
$ git remote add origin [URL]
$ git push -u origin master
0
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
0
1