Skip to content

Commit 94d5320

Browse files
committed
Tidied git2 import
1 parent f4154cc commit 94d5320

25 files changed

+28
-28
lines changed

include/blob.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <node.h>
1111
#include <string.h>
1212

13-
#include "../vendor/libgit2/include/git2.h"
13+
#include "git2.h"
1414

1515
#include "repo.h"
1616

include/commit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <node.h>
1010
#include <vector>
1111

12-
#include "../vendor/libgit2/include/git2.h"
12+
#include "git2.h"
1313

1414
#include "reference.h"
1515
#include "repo.h"

include/diff_list.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <string>
1212
#include <map>
1313

14-
#include "../vendor/libgit2/include/git2.h"
14+
#include "git2.h"
1515

1616
#include "../include/repo.h"
1717

include/error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <node.h>
1010

11-
#include "../vendor/libgit2/include/git2.h"
11+
#include "git2.h"
1212

1313
using namespace v8;
1414
using namespace node;

include/functions/utilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <v8.h>
55
#include <node.h>
66

7-
#include "../../vendor/libgit2/include/git2.h"
7+
#include "git2.h"
88

99
#include "../../include/error.h"
1010

include/index.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <node.h>
1010

11-
#include "../vendor/libgit2/include/git2.h"
11+
#include "git2.h"
1212

1313
using namespace node;
1414

@@ -52,5 +52,5 @@ class GitIndex : public ObjectWrap {
5252
*/
5353
static v8::Handle<v8::Value> New(const v8::Arguments& args);
5454
};
55-
55+
5656
#endif

include/object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <v8.h>
1212
#include <node.h>
1313

14-
#include "../vendor/libgit2/include/git2.h"
14+
#include "git2.h"
1515

1616
#include "repo.h"
1717
#include "oid.h"

include/odb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <node.h>
1010

11-
#include "../vendor/libgit2/include/git2.h"
11+
#include "git2.h"
1212

1313
using namespace node;
1414

@@ -52,5 +52,5 @@ class GitOdb : public ObjectWrap {
5252
*/
5353
static v8::Handle<v8::Value> New(const v8::Arguments& args);
5454
};
55-
55+
5656
#endif

include/oid.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <v8.h>
1212
#include <node.h>
1313

14-
#include "../vendor/libgit2/include/git2.h"
14+
#include "git2.h"
1515

1616
using namespace node;
1717
using namespace v8;

include/reference.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include <node.h>
1313
#include <string>
1414

15-
#include "../vendor/libgit2/include/git2.h"
15+
#include "git2.h"
1616

1717
#include "repo.h"
1818
#include "oid.h"

0 commit comments

Comments
 (0)