/image/ .gitignore

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

/image/ .gitignore

Ben Coman
 
Minor tuning of the .gitignore file...
I wonder if rather than all these special cases we don't want...
/image/*.sum
/image/*.tgz
/image/coglinux*
/image/cogwin
/image/Cog.app
/image/cogspurlinux*
/image/sqlinux*
/image/cogspurwin
/image/CogSpur.app
/image/Squeak.*app
/image/Squeak-*-All-in-One.*
/image/SqueakDebug.log
/image/Squeak3D.log
/image/__MACOSX
/image/crash.dmp
/image/package-cache
/image/prefs
/image/special-dirs
/image/*.zip
/image/.*history

this could be streamlined by concentrating on the files we do want... 
/image/*
!/image/*.sh
!/image/*.st
!/image/*.text
!/image/README

which seems to cover it from reviewing what is left over... 
$ cd image && ls -F | grep -vE '.sh\*$|.st$|.text$|README'

Any objections?

cheers -ben

Reply | Threaded
Open this post in threaded view
|

Re: /image/ .gitignore

Eliot Miranda-2
 


> On May 31, 2017, at 8:18 PM, Ben Coman <[hidden email]> wrote:
>
> Minor tuning of the .gitignore file...
> I wonder if rather than all these special cases we don't want...
> /image/*.sum
> /image/*.tgz
> /image/coglinux*
> /image/cogwin
> /image/Cog.app
> /image/cogspurlinux*
> /image/sqlinux*
> /image/cogspurwin
> /image/CogSpur.app
> /image/Squeak.*app
> /image/Squeak-*-All-in-One.*
> /image/SqueakDebug.log
> /image/Squeak3D.log
> /image/__MACOSX
> /image/crash.dmp
> /image/package-cache
> /image/prefs
> /image/special-dirs
> /image/*.zip
> /image/.*history
>
> this could be streamlined by concentrating on the files we do want...
> /image/*
> !/image/*.sh
> !/image/*.st
> !/image/*.text
> !/image/README
>
> which seems to cover it from reviewing what is left over...
> $ cd image && ls -F | grep -vE '.sh\*$|.st$|.text$|README'
>
> Any objections?

Not from me.  Much clearer.

>
> cheers -ben
>