From 7aed845132268cae41d11539b951a2257c8e6c09 Mon Sep 17 00:00:00 2001 From: palace Date: Sat, 23 Apr 2016 12:16:56 -0500 Subject: [PATCH] sync latest --- .gitconfig | 24 ++++++++++++++++++++++++ .gitignore | 9 +++++++++ dump_history.sh | 5 +++++ 3 files changed, 38 insertions(+) create mode 100644 .gitconfig create mode 100644 .gitignore create mode 100755 dump_history.sh diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..78a956d --- /dev/null +++ b/.gitconfig @@ -0,0 +1,24 @@ +[core] + excludefiles = ~/.gitignore + editor = 'emacs -nw' + pager = less + +[color] + ui = auto + grep = auto + +[alias] + br = branch + st = status + co = checkout + ci = commit + k = !gitk + g = gui + amend = commit --amend --no-edit + glot = log --graph --pretty='format:|%C(yellow) %h | %C(red) %ad | %C(green) %an | %C(reset) %s %d' + +[user] + name = YYY + email = XXX +[credential] + helper = cache --timeout=3600 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..71d699b --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +#Docs +tags +Doxyfile +html/ +*.txt +*.out + +#repos +.svn/ diff --git a/dump_history.sh b/dump_history.sh new file mode 100755 index 0000000..fe6fe2a --- /dev/null +++ b/dump_history.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +read line +d=$(date '+%b %d %H:%M:%S') +echo "$d - $line" >> /home/andres/history/history.txt