You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This modifies the readme and one source code file to no longer say
that Git LFS is required to get generated archives, because they
are checked in as regular blobs instead these days, ever since
35439de (#1176). This may simplfy onboarding since readers are no
longer told they must do anything with `git lfs` to get started.
It also removes the LFS step from a CI test job definition that had
it, for the same reason: the generated archives are no longer
stored in LFS, so the only current expected effects of that step
are to make the job slightly more complicated and very slightly
slower. See also 7b3104d (#1360) and c60f270.
Copy file name to clipboardExpand all lines: README.md
+20-23Lines changed: 20 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@
3
3
<imgsrc="etc/msrv-badge.svg">
4
4
5
5
`gitoxide` is an implementation of `git` written in Rust for developing future-proof applications which strive for correctness and
6
-
performance while providing a pleasant and unsurprising developer experience.
6
+
performance while providing a pleasant and unsurprising developer experience.
7
7
8
8
`gitoxide` provides the `gix` and `ein` binaries for use on the command-line to allow experimentation with key features
9
-
like `fetch` and `clone`, and to validate the usability and control of the API offered by the [`gix`] crate.
9
+
like `fetch` and `clone`, and to validate the usability and control of the API offered by the [`gix`] crate.
10
10
11
11
`gitoxide` aspires to be a production-grade server implementation and the `ein` binary aspires to become the default way to interact with git repositories.
12
12
@@ -16,10 +16,10 @@ like `fetch` and `clone`, and to validate the usability and control of the API o
16
16
17
17
## Development Status
18
18
19
-
The command-line tools as well as the status of each crate is described in
19
+
The command-line tools as well as the status of each crate is described in
20
20
[the crate status document](https://github.com/Byron/gitoxide/blob/main/crate-status.md).
21
21
22
-
For use in applications, look for the [`gix`](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix) crate,
22
+
For use in applications, look for the [`gix`](https://github.com/Byron/gitoxide/blob/main/crate-status.md#gix) crate,
23
23
which serves as entrypoint to the functionality provided by various lower-level plumbing crates like
- See how PRs are reviewed along with a lot of inner monologue.
317
-
314
+
318
315
#### Other Media
319
316
320
317
-[Rustacean Station Podcast](https://rustacean-station.org/episode/055-sebastian-thiel/)
@@ -376,20 +373,20 @@ Provide a CLI to for the most basic user journey:
376
373
## Shortcomings & Limitations
377
374
378
375
Please take a look at the [`SHORTCOMINGS.md` file](https://github.com/Byron/gitoxide/blob/main/SHORTCOMINGS.md) for details.
379
-
376
+
380
377
## Credits
381
378
382
379
***itertools**_(MIT Licensed)_
383
380
* We use the `izip!` macro in code
384
381
***deflate2**_(MIT Licensed)_
385
382
* We use various abstractions to implement decompression and compression directly on top of the rather low-level `miniz_oxide` crate
386
-
383
+
387
384
## 🙏 Special Thanks 🙏
388
385
389
386
At least for now this section is exclusive to highlight the incredible support that [Josh Triplett](https://github.com/joshtriplett) has provided to me
390
387
in the form of advice, sponsorship and countless other benefits that were incredibly meaningful. Going full time with `gitoxide` would hardly have been
391
388
feasible without his involvement, and I couldn't be more grateful 😌.
392
-
389
+
393
390
## License
394
391
395
392
This project is licensed under either of
@@ -405,6 +402,6 @@ at your option.
405
402
406
403
* Originally @Byron was really fascinated by [this problem](https://github.com/gitpython-developers/GitPython/issues/765#issuecomment-396072153)
407
404
and believes that with `gitoxide` it will be possible to provide the fastest solution for it.
408
-
*@Byron has been absolutely blown away by `git` from the first time he experienced git more than 13 years ago, and
405
+
*@Byron has been absolutely blown away by `git` from the first time he experienced git more than 13 years ago, and
409
406
tried to implement it in [various shapes](https://github.com/gitpython-developers/GitPython/pull/1028) and [forms](https://github.com/byron/gogit)
410
407
multiple [times](https://github.com/Byron/gitplusplus). Now with Rust @Byron finally feels to have found the right tool for the job!
0 commit comments