Formulize

Integrate your data, automate your workflows, elevate your game

Version 7 out now!

Download .zip View on GitHub Join us on Slack Follow on Twitter

Git Tips and Tricks

To search for a particular bit of code that was added somewhere, but you don’t know which branch, try this:

git log -p -all -S 'some text you want to find'

Press ‘q’ to exit the results, when you see (END) on screen.

More info: Stack Overflow