git2 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -15
- data/exe/{git → git2} +0 -0
- data/lib/git2/version.rb +1 -1
- metadata +3 -11
- data/exe/git-pack-objects +0 -3
- data/exe/git-receive-pack +0 -3
- data/exe/git-unpack-objects +0 -3
- data/exe/git-upload-pack +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 605caf9457ceae279fee4fee6cfa0628b77a39d9
|
4
|
+
data.tar.gz: 642998d75df72246d2645876d4e3e2ee6c102f29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c811105179154fc9dd1b53d1185040241c8b9baa6bb54c222299cb51e738858f26f2d1dd21c0e8a72f1201da8aff9be4b93a18b1a699930c2948e549bfecc303
|
7
|
+
data.tar.gz: b64faf3b9a317b94a9f87a06067bbb2fa1b459edf05b2d090701e19dfa8e9cfc3a973c937b67d0cfe4956c68520ba7961128b0b84109944e4e9382a2b9a6ba79
|
data/README.md
CHANGED
@@ -2,20 +2,6 @@
|
|
2
2
|
|
3
3
|
Git2 implement git commands in rugged and libgit2.
|
4
4
|
|
5
|
-
Currently available commands are:
|
6
|
-
|
7
|
-
git-upload-pack
|
8
|
-
Send objects packed back to git-fetch-pack.
|
9
|
-
git-pack-objects
|
10
|
-
Create a packed archive of objects.
|
11
|
-
|
12
|
-
git-receive-pack
|
13
|
-
Receive what is pushed into the repository.
|
14
|
-
git-unpack-objects
|
15
|
-
Unpack objects from a packed archive.
|
16
|
-
git-index-pack
|
17
|
-
Build pack index file for an existing packed archive.
|
18
|
-
|
19
5
|
[![Gem Version](https://badge.fury.io/rb/git2.svg)](https://badge.fury.io/rb/git2)
|
20
6
|
[![Build Status](https://travis-ci.org/pmq20/git2.svg)](https://travis-ci.org/pmq20/git2)
|
21
7
|
[![Code Climate](https://codeclimate.com/github/pmq20/git2/badges/gpa.svg)](https://codeclimate.com/github/pmq20/git2)
|
@@ -28,7 +14,21 @@ Currently available commands are:
|
|
28
14
|
|
29
15
|
## Usage
|
30
16
|
|
31
|
-
|
17
|
+
git2 <command> [<args>]
|
18
|
+
|
19
|
+
Currently available commands are:
|
20
|
+
|
21
|
+
upload-pack
|
22
|
+
Send objects packed back to git-fetch-pack.
|
23
|
+
pack-objects
|
24
|
+
Create a packed archive of objects.
|
25
|
+
|
26
|
+
receive-pack
|
27
|
+
Receive what is pushed into the repository.
|
28
|
+
unpack-objects
|
29
|
+
Unpack objects from a packed archive.
|
30
|
+
index-pack
|
31
|
+
Build pack index file for an existing packed archive.
|
32
32
|
|
33
33
|
## Development
|
34
34
|
|
data/exe/{git → git2}
RENAMED
File without changes
|
data/lib/git2/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- P.S.V.R
|
@@ -84,11 +84,7 @@ description:
|
|
84
84
|
email:
|
85
85
|
- pmq2001@gmail.com
|
86
86
|
executables:
|
87
|
-
-
|
88
|
-
- git-pack-objects
|
89
|
-
- git-receive-pack
|
90
|
-
- git-unpack-objects
|
91
|
-
- git-upload-pack
|
87
|
+
- git2
|
92
88
|
extensions: []
|
93
89
|
extra_rdoc_files: []
|
94
90
|
files:
|
@@ -101,11 +97,7 @@ files:
|
|
101
97
|
- Rakefile
|
102
98
|
- bin/console
|
103
99
|
- bin/setup
|
104
|
-
- exe/
|
105
|
-
- exe/git-pack-objects
|
106
|
-
- exe/git-receive-pack
|
107
|
-
- exe/git-unpack-objects
|
108
|
-
- exe/git-upload-pack
|
100
|
+
- exe/git2
|
109
101
|
- git2.gemspec
|
110
102
|
- lib/git2.rb
|
111
103
|
- lib/git2/version.rb
|
data/exe/git-pack-objects
DELETED
data/exe/git-receive-pack
DELETED
data/exe/git-unpack-objects
DELETED
data/exe/git-upload-pack
DELETED