From 153e87d36ce12100990d3be63e3079fd736f3e4d Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Mon, 28 Mar 2016 00:27:43 -0300 Subject: [PATCH] fixed wrong info in fcinfo tool --- src/Tools/fcinfo | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Tools/fcinfo b/src/Tools/fcinfo index 025db68f2..3017955d2 100755 --- a/src/Tools/fcinfo +++ b/src/Tools/fcinfo @@ -31,8 +31,12 @@ __doc__ = '''This utility prints information about a given FreeCAD file (*.FCStd on screen, including document properties, number of included objects and object sizes. -It can be used as a textconv tool for git diff by adding this utility to -your exec path andadding this entry to .gitattributes: *.fcstd diff=fcinfo +It can be used as a textconv tool for git diff by configuring your git folder as follows: + 1) add to .gitattributes: + *.fcstd diff=fcinfo + 2) add to .git/config (or .gitconfig for user-wide): + [diff "fcinfo"] + textconv = /path/to/fcinfo Usage: fcinfo myfile.FCStd'''