Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A minimal release please? #114

Closed
jeffallen opened this issue Jan 8, 2016 · 8 comments
Closed

A minimal release please? #114

jeffallen opened this issue Jan 8, 2016 · 8 comments

Comments

@jeffallen
Copy link
Contributor

It is too bad that this repo has grown to be so huge, as a result of the examples, I guess.

It would be helpful to have a minimal release available for download so that people who just want go-fuzz and not the rest could unzip the source into their GOPATH and skip the enormous git clone.

@dvyukov
Copy link
Owner

dvyukov commented Jan 8, 2016

I've created github.com/dvyukov/go-fuzz-corpus. Help with moving corpus to that repo is welcome.

@dgryski
Copy link
Contributor

dgryski commented Jan 8, 2016

@dvyukov Moving the entire examples directory is probably easier. However, if you just want to move the corpus directories:

for i in `find examples -type d -name corpus`; do
    d=`dirname $i`
    mkdir -p ../go-fuzz-corpus/$d
    mv $i ../go-fuzz-corpus/$i
    git rm -r $i
done

Of course this still leaves all the examples in the repo. Fixing this isn't possible without rewriting history.

@AlekSi
Copy link
Contributor

AlekSi commented Apr 4, 2017

Dupe of #88.

@dgryski
Copy link
Contributor

dgryski commented Dec 26, 2017

Will be obsoleted by #154

@AlekSi
Copy link
Contributor

AlekSi commented Feb 2, 2018

See dvyukov/go-fuzz-corpus#1. After it is done, history is this repository can be rewritten.

@AlekSi
Copy link
Contributor

AlekSi commented Feb 6, 2018

@dvyukov Rewritten history is pushed to https://github.com/AlekSi/go-fuzz. I also added a note to README about that.

@dvyukov
Copy link
Owner

dvyukov commented Feb 6, 2018

Done
This is resolved now, right?

@dvyukov dvyukov closed this as completed Feb 6, 2018
@jeffallen
Copy link
Contributor Author

While I'm here, just want to say thanks for go-fuzz one more time. It caught some bugs at work today. 🥇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants