From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=koA/nmgk; spf=pass (domain: linaro.org, ip: 209.85.128.66, mailfrom: leif.lindholm@linaro.org) Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by groups.io with SMTP; Mon, 10 Jun 2019 04:54:15 -0700 Received: by mail-wm1-f66.google.com with SMTP id v19so228396wmj.5 for ; Mon, 10 Jun 2019 04:54:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=jcC0kGWdxhW5+rZqfbY4xh/2yXIk+woCQkFqtJ9vJDM=; b=koA/nmgkndsQwIIU8z5QKyTnr95Aploi6RVED4OB+f4fMzjYWY5YipCYccEAX1I95F x0BEhmn2veiuD1SvPKgulCJTx8gTDRElb7kxAVDfG8SDuZOHT53NhBIY8ZwHGUsHP81d FGRPpsykoduC16tAEdl99pagGWT9CeHGicTCgKNjMvnFlGNwPxbLAXGPIqBceKhZ2S3d slabfV0LMPquAj9t3y//vI3hACf9MdGSR4DvZds6L8FOZ+93XLB7tdXXDQrS+ZPaVdl2 C+0tHK5NKFjQRXTLxSF8iCFhghtIZmNj55WVwt5F5xLG/htPz0OVVpVbO4CtPDDK3Rt9 5Z+Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=jcC0kGWdxhW5+rZqfbY4xh/2yXIk+woCQkFqtJ9vJDM=; b=r+RHSwBFTdy1vRL2OaBzpU0sPzROiEQbB9S75goHB32ReVE3svp61iD38BgBxlsYAl 5FpVgr6lMQLbRLVnTNfB/lpDgTRhFp5wTmY2ZI+po1FeRqqLooMV+ma3sGq+lsEv1tF2 fsAB2q1TW4410pn7JltCeV2y3fCFwb6/pVeEH9lc5EPz/l5DscuGk7UgSeCzADVVviNM V1j+ORlqb6znbr+r+qj8zWQ81Kz+lFdcbe8Gm3wVR36pliP+F6/heDxJa5gwFqy5KUev +P6NMrphVy944uoqIFfyPUqV/mAspjm+Uy/o6DVCPvrGaYbRy4bQCn/T+ju022a4YL5R jm1g== X-Gm-Message-State: APjAAAV5fBKelnF7P6ehQ39Kn8otPe0rulIu1r6wS1CpDkQ+fha2lbtk TdInpzXgFD56KDr/1BMeIXlQoHOX3jr55A== X-Google-Smtp-Source: APXvYqy4gL5UPkBPGQEjefwQUebe9JkUjLQf4/QjlaCkvirUFVFCQHSment5j3bIWjZ37+1wnmsm8w== X-Received: by 2002:a7b:c057:: with SMTP id u23mr13407978wmc.29.1560167653185; Mon, 10 Jun 2019 04:54:13 -0700 (PDT) Return-Path: Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id y2sm10828635wra.58.2019.06.10.04.54.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 10 Jun 2019 04:54:12 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: "Feng, Bob C" , Liming Gao , Yonghong Zhu , Andrew Fish , Laszlo Ersek , Michael D Kinney Subject: [PATCH 1/2] BaseTools: add centralized location for git config files Date: Mon, 10 Jun 2019 12:54:09 +0100 Message-Id: <20190610115410.13458-2-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.11.0 Before adding the git environment initialization script, add the following files that will be pointed to after running said script: - BaseTools/Conf/diff.order - BaseTools/Conf/gitattributes Signed-off-by: Leif Lindholm Reviewed-by: Laszlo Ersek --- BaseTools/Conf/diff.order | 8 ++++++++ BaseTools/Conf/gitattributes | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 BaseTools/Conf/diff.order create mode 100644 BaseTools/Conf/gitattributes diff --git a/BaseTools/Conf/diff.order b/BaseTools/Conf/diff.order new file mode 100644 index 0000000000..1d578ac28c --- /dev/null +++ b/BaseTools/Conf/diff.order @@ -0,0 +1,8 @@ +*.dec +*.dsc.inc +*.dsc +*.fdf +*.inf +*.h +*.vfr +*.c diff --git a/BaseTools/Conf/gitattributes b/BaseTools/Conf/gitattributes new file mode 100644 index 0000000000..a8f923fd8a --- /dev/null +++ b/BaseTools/Conf/gitattributes @@ -0,0 +1,14 @@ +*.efi -diff +*.EFI -diff +*.bin -diff +*.BIN -diff +*.raw -diff +*.RAW -diff +*.bmp -diff +*.BMP -diff +*.dec diff=ini +*.dsc diff=ini +*.dsc.inc diff=ini +*.fdf diff=ini +*.fdf.inc diff=ini +*.inf diff=ini -- 2.11.0