mdespuits / dotify

A CLI Tool for managing your dotfiles.
http://mattdbridges.github.com/dotify
MIT License
158 stars 10 forks source link

Configuration link broken #18

Closed dagda1 closed 12 years ago

dagda1 commented 12 years ago

Hi,

The link to the dotify configuration is broken in the readme (https://github.com/mattdbridges/dotify/tree/cli-rewrite#configuration).

How do I specify which github repo I should be backing up to?

Thanks

Paul

mdespuits commented 12 years ago

Thanks!

mdespuits commented 12 years ago

I'm not quite sure I understand the backup question? Could you elaborate?

dagda1 commented 12 years ago

I mean, how do I get my setup into github?

Do I have to manually add the files to github?

mdespuits commented 12 years ago

No, all you have to do is make your ~/.dotify directory a git repository that has a remote on GH, so all you have to do is create the repo on GH and have ~/.dotify have a remote pointing to it:

$ cd ~/.dotify
$ git init
$ git add .
$ git commit -m "initial commit"
$ git remote add origin git@github.com:USERNAME/REPOSITORY.git
$ git push # or `dotify save`