Created
September 3, 2011 09:56
-
-
Save booo/1190940 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git = require "nodegit" | |
| git.repo "../node-mapnik/.git", (error, repo) -> | |
| if error then console.log error | |
| else | |
| repo.branch "master", (error, branch) -> | |
| if error then console.log error | |
| else | |
| branch.tree().walk (i, entry) -> | |
| console.log entry.name | |
| console.log entry.content | |
| console.log entry |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment