|
@ -32,7 +32,8 @@ etckeeper init |
|
|
## Git utilities |
|
|
## Git utilities |
|
|
## |
|
|
## |
|
|
|
|
|
|
|
|
echo "[alias] |
|
|
|
|
|
|
|
|
cat <<EOF > /etc/gitconfig |
|
|
|
|
|
[alias] |
|
|
co = checkout |
|
|
co = checkout |
|
|
com = commit |
|
|
com = commit |
|
|
st = status |
|
|
st = status |
|
@ -44,9 +45,32 @@ echo "[alias] |
|
|
interactive = auto |
|
|
interactive = auto |
|
|
status = auto |
|
|
status = auto |
|
|
|
|
|
|
|
|
" >> /etc/gitconfig |
|
|
|
|
|
|
|
|
[core] |
|
|
|
|
|
whitespace = fix |
|
|
|
|
|
excludesfile = /etc/gitignore |
|
|
|
|
|
|
|
|
|
|
|
EOF |
|
|
|
|
|
|
|
|
|
|
|
cat <<EOF > /etc/gitignore |
|
|
|
|
|
docs/build/* |
|
|
|
|
|
develop-eggs/* |
|
|
|
|
|
*.pyc |
|
|
|
|
|
*.o |
|
|
|
|
|
.installed.cfg |
|
|
|
|
|
eggs/* |
|
|
|
|
|
*.egg-info/* |
|
|
|
|
|
*.orig |
|
|
|
|
|
dist/* |
|
|
|
|
|
build/* |
|
|
|
|
|
buildout.dev.cfg |
|
|
|
|
|
*~ |
|
|
|
|
|
*# |
|
|
|
|
|
.#* |
|
|
|
|
|
*.swp |
|
|
|
|
|
*_flymake.* |
|
|
|
|
|
.svn |
|
|
|
|
|
|
|
|
|
|
|
EOF |
|
|
|
|
|
|
|
|
## |
|
|
## |
|
|
## ldap client |
|
|
## ldap client |
|
|