Last active
June 24, 2023 10:13
-
-
Save jmoody/20f5a36a8846982817be to your computer and use it in GitHub Desktop.
Revisions
-
jmoody revised this gist
Jan 8, 2016 . 1 changed file with 6 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,13 @@ ### ~/.gitatrributes ``` *.plist diff=plist *.mobileprovision diff=mobileprovision ``` ### ~/.gitconfig ``` [diff "plist"] textconv = plutil -convert xml1 -o - cachetextconv = true -
jmoody created this gist
Jan 8, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ ``` # ~/.gitatrributes *.plist diff=plist *.mobileprovision diff=mobileprovision # ~/.gitconfi [diff "plist"] textconv = plutil -convert xml1 -o - cachetextconv = true [filter "plist"] clean = plutil -convert xml1 -o - - smudge = plutil -convert binary1 -o - - [filter "plist-xml"] clean = plutil -convert xml1 -o - - [filter "plist-bin"] clean = plutil -convert binary1 -o - - [url "[email protected]:"] insteadOf = https://github.com/ [diff "mobileprovision"] textconv = xcrun security cms -D -i ```