SVN_SILENT made messages (.desktop file)
[rsibreak.git] / HACKING
blobe0401e29b035835bc8ba91ab1e8a12413e98b615
1 We follow kdelibs coding style:
2 http://techbase.kde.org/Policies/Kdelibs_Coding_Style
4 except that we prefer spaces in the () for readability, so "void bla( arg )"
6 if you are not sure run:
8 astyle --indent=spaces=4 --brackets=linux \
9        --indent-labels --pad=paren-in --unpad=paren \
10        --one-line=keep-statements --convert-tabs \
11        --indent-preprocessor \
12        `find -type f -name '*.cpp'` `find -type f -name '*.h'`
14 There is a git repo at http://repo.or.cz/w/rsibreak.git with full commit 
15 history. If you want to use that repo with git-svn to be able to commit 
16 directly to svn, do:
18 git clone git://repo.or.cz/rsibreak.git
19 cd rsibreak
20 git config --add remote.origin.fetch=+refs/remotes/*:refs/remotes/*
21 git fetch
22 git svn init svn+ssh://svn.kde.org/home/kde/trunk/extragear/utils/rsibreak
23 git svn rebase
24 git svn show-ignore >> .git/info/exclude
26 That should do. 
27 Repo is currently managed by RafaƂ Rzepecki <divided.mind@gmail.com>.