So I'm on my phone and I'm looking at this GitHub repo. It has an animated screenshot that I can't quite make out, and it doesn't let me pinch zoom to see it better.<p>I try tapping on the image in the hope that it will give me a standalone image I can zoom in on.<p>Instead, it takes me to a page that asks me, "Do You Live In San Jose And Like Asian Women?" And "Meet The Best Type Of Girls Who'll Do Anything For You."<p>And I still can't zoom in on the screenshot.<p>Tip to open source authors: don't host your screenshots on postimg.cc.
gitin is a minimalist tool that lets you explore a git repository from command line. You can search from commits, inspect indvidual files and changes in the commits, see ahead/behind commits etc. It is an alternative and interactive way to explore the commit history. Also, you can explore your current state by investigating diffs, stage your changes and commit them.<p>When I was building <a href="https://github.com/isacikgoz/gitbatch" rel="nofollow">https://github.com/isacikgoz/gitbatch</a> I had to decide whether use git2go(libgit2) or go-git with my project, I choose go-git for gitbatch and I wanted to try git2go with another project. gitin is born with this idea but it is now a handy tool for me to use everyday. I am happy with git2go(libgit2) and consider using it on gitbatch too.
That's cool. Suggestion: you can use asciinema [0] for recording a terminal session instead of using GIF file.<p>[0]: <a href="https://asciinema.org" rel="nofollow">https://asciinema.org</a>
Your installer doesn't work if GOPATH contains multiple entries:<p><pre><code> $ echo $GOPATH
/home/martin/go:/home/martin/work
</code></pre>
It tries to run stuff like:<p><pre><code> patch -d /home/martin/go:/home/martin/work/src/gopkg.in/libgit2/git2go.v27 -p1 < git2go.v27.patch</code></pre>
Looks awesome. Random feature suggestion: Visual hunk staging like in magit for emacs. Super useful.<p>Edit: You can see that feature here: <a href="https://magit.vc/screenshots/" rel="nofollow">https://magit.vc/screenshots/</a> under "Staging Changes"