Code Monkey home page Code Monkey logo

dotgit's Introduction

dotgit

Easily manage a mirror of your dotfiles with git.

##Introduction

###Setup:

$ mkdir ~/dotfiles
$ git clone https://github.com/dbb/dotgit.git
$ vim dotgit/dotgit
    # set $git_dir to "~/dotgit"
$ ln -s ~/dotgit/dotgit ~/bin/dotgit

###First use:

$ dotgit up .Xdefaults .vimrc .zsh

This is functionally equivalent to:

$ cp ~/.Xdefaults ~/dotfiles
$ cp ~/.vimrc ~/dotfiles
$ cp ~/.zshrc ~/dotfiles

$ cd ~/dotfiles
$ git add .Xdefaults .vimrc .zsh
$ git commit -m 'Update: .Xdefaults .vimrc .zsh'
$ git push -u origin master

So as you can see, in the long run it can save you quite a bit of typing. Also, it lets you avoid the sloppiness in making your whole home folder an active git repository.

Note: actually, the program will not do any of this in the event that the diff of the local file and the one in the git repo is null.

###Updating local files:

$ dotgit down .Xdefaults .vimrc .zshrc

This is functionally equivalent to:

$ cd ~/dotfiles
$ git pull
$ cp .Xdefaults ~
$ cp .vimrc ~
$ cp .zshrc ~

##TODO

  • add "update all" function
  • add support for loading specific file sets from a config file

##Requirements

  • git
  • Perl version 5.10 or newer

dotgit's People

Contributors

dbb avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.