Initial commit.

This commit is contained in:
2013-09-14 14:35:23 +02:00
commit 6252ec3a09
19 changed files with 959 additions and 0 deletions

31
git/gitconfig Normal file
View File

@@ -0,0 +1,31 @@
[user]
name = Hannes Körber
email = hannes.koerber@gmail.com
[alias]
untrack = "rm --cached"
unstage = "reset HEAD"
unmodify = "checkout --"
ignore-changes = "update-index --assume-unchangend"
unignore-changes = "update-index --no-assume-unchanged"
visual = "!gitk"
co = "checkout"
ci = "commit"
st = "status"
br = "branch"
rb = "rebase"
last = "log -1 HEAD"
[core]
editor = vim
pager = less
whitespace = ""
excludesfile = "~/.gitignore_global"
[color]
ui = true
[gui]
recentrepo = /home/hannes/programming/git-repositories/autobackup
[push]
default = simple
[merge]
tool = vimdiff

82
git/gitignore_global Normal file
View File

@@ -0,0 +1,82 @@
# http://github.com/github/gitignore
### Linux
.*
!.gitignore
*~
### Windows
# image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
### Mac OSX
.DS_Store
.AppleDouble
.LSOverride
Icon
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
### compiled source
*.com
*.class
*.dll
*.exe
*.o
*.so
### packages
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.jar
*.rar
*.zip
*.gz
*.bzip
*.bz2
*.xz
*.lzma
### packing-only formats
*.iso
*.tar
### package management formats
*.dmg
*.xpi
*.gem
*.egg
*.deb
*.rpm
### logs and databases
*.log
*.sql
*.sqlite
### eclipse specific
*.pydevproject
.project
.metadata
local.properties
.classpath
.settings/
.loadpath
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
.cproject
# PDT-specific
.buildpath

61
git/gitk Normal file
View File

@@ -0,0 +1,61 @@
set mainfont {sans 9}
set textfont {monospace 9}
set uifont {sans 9 bold}
set tabstop 8
set findmergefiles 0
set maxgraphpct 50
set maxwidth 16
set cmitmode patch
set wrapcomment none
set autoselect 1
set autosellen 40
set showneartags 1
set maxrefs 20
set hideremotes 0
set showlocalchanges 1
set datetimeformat {%Y-%m-%d %H:%M:%S}
set limitdiffs 1
set uicolor grey85
set want_ttk 1
set bgcolor white
set fgcolor black
set uifgcolor black
set uifgdisabledcolor #999
set colors {green red blue magenta darkgrey brown orange}
set diffcolors {red "#00a000" blue}
set mergecolors {red blue green purple brown "#009090" magenta "#808000" "#009000" "#ff0080" cyan "#b07070" "#70b0f0" "#70f0b0" "#f0b070" "#ff70b0"}
set markbgcolor #e0e0ff
set diffcontext 3
set selectbgcolor gray85
set foundbgcolor yellow
set currentsearchhitbgcolor orange
set extdifftool meld
set perfile_attrs 0
set headbgcolor green
set headfgcolor black
set headoutlinecolor black
set remotebgcolor #ffddaa
set tagbgcolor yellow
set tagfgcolor black
set tagoutlinecolor black
set reflinecolor black
set filesepbgcolor #aaaaaa
set filesepfgcolor black
set linehoverbgcolor #ffff80
set linehoverfgcolor black
set linehoveroutlinecolor black
set mainheadcirclecolor yellow
set workingfilescirclecolor red
set indexcirclecolor green
set circlecolors {white blue gray blue blue}
set linkfgcolor blue
set circleoutlinecolor black
set geometry(main) 1024x516+0+0
set geometry(state) normal
set geometry(topwidth) 1024
set geometry(topheight) 210
set geometry(pwsash0) "519 1"
set geometry(pwsash1) "844 1"
set geometry(botwidth) 550
set geometry(botheight) 301
set permviews {}