9
7

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.

ドットファイル(.vimrcなど)をgithubで管理する

Posted at

はじめに

そろそろ.vimrcなどのファイルをGITHUBで管理したくなってきたので、手順をまとめてました。

対象者

GITHUBの管理など、もろもろ初級者の方を対象としているので、コマンド等の解説もできる限り補足を入れてまとめています

ゴール

.vimrcなどのファイルがGITHUBで管理できている状態を目指します

作業の大枠

ディレクトリ構造として以下を目指します
https://gyazo.com/7e62dbe4748efb176461b904b51279f2

以下のようにコマンドを実行して管理用のディレクトリとファイルを作成します

# dotfilesディレクトリを作成
mkdir ~/dotfiles

# 管理用のファイルを作成
mv  ~/.vimrc ~/dotfiles/vimrc/_vimrc

# シンボルリンクリンクを作成
ln -s ~/dotfiles/vimrc/_vimrc ~/.vimrc

※シンボルリンクとは?
http://kazmax.zpp.jp/linux_beginner/symbolic_link.html

GITHUBのリポジトリを管理します

#dotfilesをgithubで管理する。
cd ~/dotfiles/vimrc
git init
touch README
git add README
git add _vimrc
git commit -m 'first_commit'
9
7
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
9
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?