LoginSignup
2
2

More than 5 years have passed since last update.

dotfiles

Last updated at Posted at 2013-12-20

Resource: USING GIT AND GITHUB TO MANAGE YOUR DOTFILES

My dotfiles

I have changed makesymlinks.sh to use .filename.

$ mv ~/.filename ~/dotfiles/.filename

# add .filename to makesymlinks.sh
...
files=".vimrc .vim .NERDTree .Xresources .bashrc .oh-my-zsh .zsh .zshrc .filename"
...

# run makesymlinks.sh
cd ~/dotfiles
chmod +x makesymlinks.sh
# note that makesymlinks.sh doesn't work. Use ./
./makesymlinks.sh 

# prepare git
git init

# add to git
git add .
git commit -m ".filename added"
git remote 
git remmote add origin http://github.com/shinokada/dotfiles.git
git push -u origin master

# from the second time
git push origin master

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