George Jones 3 years ago
parent
commit
6cf36ef13a
6 changed files with 4 additions and 36 deletions
  1. 4 0
      .gitconfig
  2. 0 5
      .link2home.ignore
  3. 0 0
      .signature
  4. 0 0
      historical/bin/sig
  5. 0 0
      historical/bin/sig.pl
  6. 0 31
      install

+ 4 - 0
.gitconfig

@@ -4,9 +4,13 @@
 [core]
         editor = emacsclient -c
 	excludesfile = ~/.gitignore
+	quotepath = false
+	commitGraph = true
 [status]
 #	showUntrackedFiles = no
 	showUntrackedFiles = normal
 	
 #[push]
 #	default = simple
+[gc]
+	writeCommitGraph = true

+ 0 - 5
.link2home.ignore

@@ -1,5 +0,0 @@
-.link2home.ignore
-.git
-README.org
-historical
-install

+ 0 - 0
.signature


+ 0 - 0
historical/bin/sig


+ 0 - 0
historical/bin/sig.pl


+ 0 - 31
install

@@ -1,31 +0,0 @@
-#! /bin/bash
-# Link everthing in '$PWD' to a dir in '~/$PWD'
-#
-# Put a COPY (not link) of his in any directory that should have it's
-# file linked into root.
-
-# Any files listed (one per line) in .install.ignore will be ignored
-
-
-# get the directory of this script
-WHERE_AM_I="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-cd ${WHERE_AM_I}
-
-# Extract the directory name of this file
-BASEDIR=`basename $WHERE_AM_I`
-
-# find link2home.sh script
-if [ -e ${HOME}/bin/link2home.sh ]; then
-   LINK2HOME="${HOME}/bin/link2home.sh"
-elif [ -e ${WHERE_AM_I}/link2home.sh ]; then
-   LINK2HOME="${WHERE_AM_I}/link2home.sh"
-else
-   echo "Can't find link2home.sh"
-   exit 1
-fi
-
-
-echo Linking evertying in "${WHERE_AM_I}"  into "~/""${BASEDIR}"
-${LINK2HOME} -v -d -r --tobase
-
-# any directory specific post-processing (permissions, etc) goes here.