From 18e264cccc98a5fb8b31b9d4da0f168d446cbf05 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 10 Jun 2015 14:19:16 +1200 Subject: A start on a Subversion configuration --- Makefile | 5 +++++ README.markdown | 2 ++ subversion/config | 12 ++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 subversion/config diff --git a/Makefile b/Makefile index 26457567..9415d329 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ install-psql \ install-readline \ install-sh \ + install-subversion \ install-task \ install-terminfo \ install-tmux \ @@ -140,6 +141,10 @@ install-sh : test-sh install -m 0644 -- sh/profile "$(HOME)"/.profile install -m 0644 -- sh/profile.d/* "$(HOME)"/.profile.d +install-subversion : + install -m 0755 -d -- "$(HOME)"/.subversion + install -m 0644 -- subversion/config "$(HOME)"/.subversion/config + install-terminfo : for info in terminfo/*.info ; do \ tic -- "$$info" ; \ diff --git a/README.markdown b/README.markdown index 6f94689f..ab87294f 100644 --- a/README.markdown +++ b/README.markdown @@ -40,6 +40,8 @@ Configuration is included for: Screen * [rxvt-unicode](http://software.schmorp.de/pkg/rxvt-unicode.html) — Fork of the rxvt terminal emulator with Unicode support +* [Subversion](https://subversion.apache.org/) — Apache Subversion, a version + control system * [Vim](http://www.vim.org/) — Vi IMproved, a text editor * [Vimperator](http://www.vimperator.org/vimperator) — Vimperator, a Firefox browser extension allowing Vim-like modes and keybindings diff --git a/subversion/config b/subversion/config new file mode 100644 index 00000000..ca6fbb7d --- /dev/null +++ b/subversion/config @@ -0,0 +1,12 @@ +[auth] +store-auth-creds = no +store-passwords = no + +[miscellany] +enable-auto-props = yes +global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ .#* .*.swp .DS_Store + +[auto-props] +*.jpg = svn:mime-type=image/jpeg +*.png = svn:mime-type=image/png + -- cgit v1.2.3