Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
23fb964
Integrate the new generation structure.
tbranyen May 6, 2014
96f0779
Automate the building of all libgit2 types.
tbranyen May 7, 2014
bf604c5
Library changes.
tbranyen May 7, 2014
2082d7d
Enable GitAttr.
tbranyen May 7, 2014
699c34e
Automate dependencies.
tbranyen May 7, 2014
712a4dc
Generating more types and safe identifiers.
tbranyen May 8, 2014
6a4225b
Copied changes from Emscripten branch.
tbranyen May 9, 2014
d0b414d
Added more types.
tbranyen May 9, 2014
67635e1
Lots of updates, most tests passing.
tbranyen May 16, 2014
f59963d
Save state.
tbranyen May 16, 2014
a2192c1
Moved build/codegen to generate.
tbranyen Jun 9, 2014
7ad92a7
Removed temporary files.
tbranyen Jun 10, 2014
95cefff
Made new.json more meaningful.
tbranyen Jun 20, 2014
9fd2b09
Update binding.gyp to use the latest files.
tbranyen Jun 22, 2014
6ed3027
Tests now passing again.
tbranyen Jun 23, 2014
6b6493b
Windows fixes.
tbranyen Jun 23, 2014
f2404da
Started working on tree.
tbranyen Jun 23, 2014
d2702f6
All tree entries passing now.
tbranyen Jun 25, 2014
f6839df
Fix the libgit2 gyp config.
tbranyen Jun 25, 2014
ab751c5
All tree tests passing, most commits passing.
tbranyen Jun 26, 2014
331cd65
Renamed index->nodegit, fixed signature issue.
tbranyen Jun 29, 2014
ba4ccee
Remove doc folder and clean gitignore.
tbranyen Jun 29, 2014
6f71cee
Enable all classes.
tbranyen Jun 29, 2014
efc794c
Remove unused CPP header template.
tbranyen Jun 29, 2014
89bc1a8
Implement isOptional.
tbranyen Jun 29, 2014
ac1f09c
Fixes remaining tests, except commit history.
tbranyen Jun 30, 2014
aa43f3f
Fixes for Windows.
tbranyen Jun 30, 2014
1730440
Convert prototype methods to constructor to fix 0.11
tbranyen Jul 2, 2014
bdc8e97
Fixes for PR comments and some revwalk
tbranyen Jul 2, 2014
f8f7305
Fix lint errors and lint runner
tbranyen Jul 2, 2014
cb83ac2
Made revwalk push synchronous, fix segfault
tbranyen Jul 2, 2014
6caa3e8
Fixes remaining blocking issues
tbranyen Jul 3, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update binding.gyp to use the latest files.
  • Loading branch information
tbranyen committed Jun 25, 2014
commit 9fd2b0950499d8ec7ca5a3eccac26196e641ce05
2 changes: 2 additions & 0 deletions 2 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
!/include/functions/copy.h
!/include/wrapper.h

/generate/idefs.json
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For windows:

/vendor/Release
/vendor/*.vcxproj
/vendor/*.filters
/vendor/*.sln


/node_modules/
/vendor/libgit2/
/test/repos/
10 changes: 5 additions & 5 deletions 10 install.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ var local = path.join.bind(path, __dirname);
// Common reusable paths that can be overwritten by environment variables.
var paths = envOverride({
pkg: local('package'),
libgit2: local('vendor/libgit2'),
libgit2: local('vendor/libgit2/'),
sys: {
include: local('include/sys'),
src: local('src/sys'),
build: local('build/Release/obj.target/src/sys')
include: local('include/sys/'),
src: local('src/sys/'),
build: local('build/Release/obj.target/src/sys/')
},
release: local('build/Release')
release: local('build/Release/')
});

// Load the package.json.
Expand Down
27 changes: 25 additions & 2 deletions 27 vendor/libgit2.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@
"http_parser",
],
"sources": [
"vendor/libgit2/src/array.h",
"vendor/libgit2/src/attr.c",
"vendor/libgit2/src/attr.h",
"vendor/libgit2/src/attr_file.c",
"vendor/libgit2/src/attr_file.h",
"vendor/libgit2/src/attrcache.h",
"vendor/libgit2/src/bitvec.h",
"vendor/libgit2/src/blame.c",
"vendor/libgit2/src/blame.h",
"vendor/libgit2/src/blame_git.c",
"vendor/libgit2/src/blame_git.h",
"vendor/libgit2/src/blob.c",
"vendor/libgit2/src/blob.h",
"vendor/libgit2/src/branch.c",
Expand Down Expand Up @@ -54,9 +60,16 @@
"vendor/libgit2/src/delta.h",
"vendor/libgit2/src/diff.c",
"vendor/libgit2/src/diff.h",
"vendor/libgit2/src/diff_output.c",
"vendor/libgit2/src/diff_output.h",
"vendor/libgit2/src/diff_driver.c",
"vendor/libgit2/src/diff_driver.h",
"vendor/libgit2/src/diff_file.c",
"vendor/libgit2/src/diff_file.h",
"vendor/libgit2/src/diff_patch.c",
"vendor/libgit2/src/diff_patch.h",
"vendor/libgit2/src/diff_print.c",
"vendor/libgit2/src/diff_tform.c",
"vendor/libgit2/src/diff_xdiff.c",
"vendor/libgit2/src/diff_xdiff.h",
"vendor/libgit2/src/errors.c",
"vendor/libgit2/src/fetch.c",
"vendor/libgit2/src/fetch.h",
Expand All @@ -77,6 +90,7 @@
"vendor/libgit2/src/hash.h",
"vendor/libgit2/src/hashsig.c",
"vendor/libgit2/src/hashsig.h",
"vendor/libgit2/src/ident.c",
"vendor/libgit2/src/ignore.c",
"vendor/libgit2/src/ignore.h",
"vendor/libgit2/src/index.c",
Expand All @@ -88,6 +102,8 @@
"vendor/libgit2/src/map.h",
"vendor/libgit2/src/merge.c",
"vendor/libgit2/src/merge.h",
"vendor/libgit2/src/merge_file.c",
"vendor/libgit2/src/merge_file.h",
"vendor/libgit2/src/message.c",
"vendor/libgit2/src/message.h",
"vendor/libgit2/src/mwindow.c",
Expand All @@ -98,12 +114,14 @@
"vendor/libgit2/src/notes.h",
"vendor/libgit2/src/object.c",
"vendor/libgit2/src/object.h",
"vendor/libgit2/src/object_api.c",
"vendor/libgit2/src/odb.c",
"vendor/libgit2/src/odb.h",
"vendor/libgit2/src/odb_loose.c",
"vendor/libgit2/src/odb_pack.c",
"vendor/libgit2/src/offmap.h",
"vendor/libgit2/src/oid.c",
"vendor/libgit2/src/oid.h",
"vendor/libgit2/src/oidmap.h",
"vendor/libgit2/src/pack-objects.c",
"vendor/libgit2/src/pack-objects.h",
Expand Down Expand Up @@ -144,8 +162,12 @@
"vendor/libgit2/src/sha1_lookup.h",
"vendor/libgit2/src/signature.c",
"vendor/libgit2/src/signature.h",
"vendor/libgit2/src/sortedcache.c",
"vendor/libgit2/src/sortedcache.h",
"vendor/libgit2/src/stash.c",
"vendor/libgit2/src/status.c",
"vendor/libgit2/src/status.h",
"vendor/libgit2/src/strmap.c",
"vendor/libgit2/src/strmap.h",
"vendor/libgit2/src/submodule.c",
"vendor/libgit2/src/submodule.h",
Expand Down Expand Up @@ -177,6 +199,7 @@
"vendor/libgit2/src/transports/smart.h",
"vendor/libgit2/src/transports/smart_pkt.c",
"vendor/libgit2/src/transports/smart_protocol.c",
"vendor/libgit2/src/transports/ssh.c",
"vendor/libgit2/src/unix/map.c",
"vendor/libgit2/src/unix/posix.h",
"vendor/libgit2/src/unix/realpath.c",
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.