← Back to team overview

kicad-developers team mailing list archive

[PATCH] .gitconfig syntax, missing '='

 

As a related but separate issue to the "Git transition" topic, I tried to use
the .gitconfig file provided, and it failed to work due to a missing '='.

The attached patch fixes it.

For those wanting to use it (it makes Git ignore the same files that Bzr does),
the incantation is:

    git config --local include.path ../.gitconfig

Cheers,

John
From 53b2afd692ecaab9757b5b0698dad09e624502bc Mon Sep 17 00:00:00 2001
From: John Beard <john.j.beard@xxxxxxxxx>
Date: Mon, 8 Aug 2016 11:03:04 +0800
Subject: [PATCH] Fix .gitconfig syntax

---
 .gitconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitconfig b/.gitconfig
index 079dcc9..0cdf319 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -1,2 +1,2 @@
 [core]
-	excludesfile .bzrignore
+    excludesfile = .bzrignore
-- 
2.9.2


Follow ups