diff options
author | Richard Hartmann <richih.mailinglist@gmail.com> | 2011-10-26 23:41:53 +0200 |
---|---|---|
committer | Richard Hartmann <richih.mailinglist@gmail.com> | 2011-10-26 23:41:53 +0200 |
commit | 25cbb9b95e451defc4e79b6fa43a2377ca90a0e8 (patch) | |
tree | 93eda5ad3954925877e6b8d9638b8d87a0e1be97 |
Initial commit
-rw-r--r-- | .config/mr/available.d/mr.vcsh | 5 | ||||
-rw-r--r-- | .config/mr/available.d/zsh.vcsh | 5 | ||||
l--------- | .config/mr/config.d/mr.vcsh | 1 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | .mrconfig | 5 |
5 files changed, 17 insertions, 0 deletions
diff --git a/.config/mr/available.d/mr.vcsh b/.config/mr/available.d/mr.vcsh new file mode 100644 index 0000000..c259512 --- /dev/null +++ b/.config/mr/available.d/mr.vcsh @@ -0,0 +1,5 @@ +[$HOME/.config/vcsh/repo.d/mr.git] +checkout = vcsh clone git://github.com/RichiH/vcsh_mr_template.git +update = vcsh run mr git pull +push = vcsh run mr git push +status = vcsh run mr git status diff --git a/.config/mr/available.d/zsh.vcsh b/.config/mr/available.d/zsh.vcsh new file mode 100644 index 0000000..3e21ffe --- /dev/null +++ b/.config/mr/available.d/zsh.vcsh @@ -0,0 +1,5 @@ +[$HOME/.config/vcsh/repo.d/zsh.git] +checkout = vcsh clone git://github.com/RichiH/zshrc.git +update = vcsh run zsh git pull +push = vcsh run zsh git push +status = vcsh run zsh git status diff --git a/.config/mr/config.d/mr.vcsh b/.config/mr/config.d/mr.vcsh new file mode 120000 index 0000000..e69f21d --- /dev/null +++ b/.config/mr/config.d/mr.vcsh @@ -0,0 +1 @@ +../available.d/mr.vcsh
\ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +* diff --git a/.mrconfig b/.mrconfig new file mode 100644 index 0000000..ea52839 --- /dev/null +++ b/.mrconfig @@ -0,0 +1,5 @@ +[DEFAULT] +git_gc = git gc "$@" +jobs = 5 + +include = cat ~/.config/mr/config.d/* |