davecgh / go-spew

Implements a deep pretty printer for Go data structures to aid in debugging
ISC License
6.05k stars 364 forks source link

Provide an example on how to debug a web app. #34

Closed jbuberel closed 9 years ago

jbuberel commented 9 years ago

Agreed- added the Go tag.

davecgh commented 9 years ago

Please rebase/squash this to a single commit.

jbuberel commented 9 years ago

Have to admit that I don't know exactly how to do that (rebase/squash) with Git. Is it easier to abandon this pull request and resubmit a new one with single commit?

Suggestions?

davecgh commented 9 years ago

$ git rebase -i master

Change the second and third commits to 's' (per the codes shown in the editor and assuming you've removed the extra blank line in another commit)

$ git push -f

jbuberel commented 9 years ago

I think I have it figured out now - sorry for the delay. PTAL.

davecgh commented 9 years ago

Thanks!