git-internals-pdf VS book

Compare git-internals-pdf vs book and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
git-internals-pdf book
22 626
2,479 14,251
0.2% 2.8%
0.0 8.7
about 1 year ago 3 days ago
Ruby Rust
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

git-internals-pdf

Posts with mentions or reviews of git-internals-pdf. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-30.
  • What approach helped you to best learn Git?
    1 project | /r/AskProgramming | 2 Jul 2023
    For me the Peepcode Git Internals book was a great peek under the hood. I went from "Git has a lot of magical incantations" to "Git is pretty simple and I could probably build a version of it".
  • Git as a Beginner
    4 projects | /r/learnprogramming | 30 Jan 2023
    I generally recommend the Peepcode Git Internals book. The first half explains the internals of how Git works, and the second half is a command reference.
  • Git book recommendations?
    3 projects | /r/ExperiencedDevs | 20 Nov 2022
  • What Git primitives get SHA-1'd to generate a hash?
    2 projects | /r/git | 17 Oct 2022
  • How well do you guys know Git
    1 project | /r/csMajors | 1 Jun 2022
    Once you get the hang of basic Git operations, you should look into how Git works under the hood. Git Internals helped me a lot on this.
  • ⛔ Squash commits considered harmful ⛔
    1 project | dev.to | 23 May 2022
    ❯ git log --graph --pretty=oneline --abbrev-commit --all * 150c57d (HEAD -> squash-merge) Squashed commit of the following: | * 535b740 (no-squash-merge) Merge branch 'work-branch' into no-squash-merge |/| | * 1836f1c (work-branch) And more | * 4b84cfe Add more |/ * 16660f8 (main) Add more * 02a154b Initial commit ❯ git cat-file -p no-squash-merge tree 58c1fb22faa444b264e98a5ae4c4ddb07be09697 parent 16660f8b1d1538ed1b55d8533b3ee7feb68e474c parent 1836f1c53221ae701a038bf5ae380770ea911665 author Manuel Odendahl 1653304391 -0400 committer Manuel Odendahl 1653304391 -0400 Merge branch 'work-branch' into no-squash-merge * work-branch: And more Add more squash-merges-considered-harmful on  squash-merge on ☁️ ttc (us-east-1) ❯ git cat-file -p squash-merge tree 58c1fb22faa444b264e98a5ae4c4ddb07be09697 parent 16660f8b1d1538ed1b55d8533b3ee7feb68e474c author Manuel Odendahl 1653304543 -0400 committer Manuel Odendahl 1653304543 -0400 Squashed commit of the following: commit 1836f1c53221ae701a038bf5ae380770ea911665 Author: Manuel Odendahl Date: Mon May 23 07:11:08 2022 -0400 And more commit 4b84cfe11aa51da994448e602e1bc4cc6083d691 Author: Manuel Odendahl Date: Mon May 23 07:11:03 2022 -0400 Add more * ``` {% endraw %} You can see that save that both {% raw %}`squash-merge`{% endraw %} and {% raw %}`no-squash-merge`{% endraw %} point to the exact same tree. The only changed thing is the commit message, and the missing parent in the squash merge. To read more about the underpinnings of git, I can recommend just experimenting with the git command line, and the following resources: - [Building Git by James Coglan](https://shop.jcoglan.com/building-git/) - [Git Internals by Scott Chacon](https://github.com/pluralsight/git-internals-pdf) ## But the history! But Manuel, you say, the history is so much cleaner! To which I counter that it is actually not. If you want to hide the link to the right parent of the non-squash merge (as it is called, the left parent being {% raw %}`main`{% endraw %} ), all you need to do is to hide it. If you use the command-line or a proper tool, use the option to only show first parents. If you only look at the first parent, and configure your git tool to fill in a full log history of the branch into the merge commit message (I personally use the github CLI {% raw %}`gh`{% endraw %} or some git-commit hooks to do it), the squash merge commit is identical to the non squash merge commit. A favorite {% raw %}`git log`{% endraw %} command of mine to quickly look at the history of the main branch, and create a changelog: {% raw %} ```shell > git log --pretty=format:'# %ad %H %s' --date=short --first-parent --reverse # 2022-05-23 02a154bc4f0fa9bca567676d45d136619c076a95 Initial commit # 2022-05-23 16660f8b1d1538ed1b55d8533b3ee7feb68e474c Add more # 2022-05-23 535b740f42e331175f3766c1374116e329a78f7e Merge branch 'work-branch' into no-squash-merge
  • How should i go about learning git?
    1 project | /r/learnprogramming | 6 May 2022
    I often recommend the Peepcode Git Internals book. The first half talks about how Git works internally. The second half is a "how to use Git" tutorial. I think understanding the internals (which aren't really that complicated) can really help to demystify Git.
  • I was said that I do not know how Git works
    1 project | /r/learnprogramming | 9 Apr 2022
    Conceptually, Git's not really all that complicated. I always recommend people to read the Peepcode Git Internals book (originally $9, now free): https://github.com/pluralsight/git-internals-pdf/blob/master/drafts/peepcode-git.pdf
  • would pulling make sense here?
    2 projects | /r/git | 6 Feb 2022
    Check out this page if you haven't yet (alternatively, direct link to the PDF.) I hear it's all good, but the Understanding Git chapter is the one I'd specifically point you to.
  • Learn the workings of Git, not just the commands(2021)
    3 projects | news.ycombinator.com | 18 Jan 2022
    I still very much recommend the Peepcode Git Internals book.

    https://github.com/pluralsight/git-internals-pdf/releases

book

Posts with mentions or reviews of book. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-26.
  • Learning Rust: A clean start
    5 projects | dev.to | 26 Feb 2024
    My first port of call was to google learn rust which lead me to "the book". The book is a first steps guide written by the rust community for newbies (or Rustlings as they're called) to gain a 'solid grasp of the language'.
  • Prodzilla: From Zero to Prod with Rust and Shuttle
    6 projects | dev.to | 21 Feb 2024
    Before Prodzilla, I’d read 'The Book' a couple of times, and had made my way through Rustlings, but hadn’t yet built a serious project in Rust.
  • Help me stop hating rust
    2 projects | news.ycombinator.com | 24 Jan 2024
    To answer your last question;

    Start with the Rust book.

    https://doc.rust-lang.org/book/

    Then do Rustlings until the syntax becomes muscle memory.

    Then join the Discord and start doing little projects.

    You won’t get up to the proficiency of other languages as quickly in Rust. It takes longer. For me it’s taking a lot longer, but I enjoy it.

  • Top 10 Rusty Repositories for you to start your Open Source Journey
    11 projects | dev.to | 19 Dec 2023
    Before diving into these repositories, familiarize yourself with Rust and its development ecosystem. The official Rust book is an excellent resource for developers at all levels. Each repository has documentation on how to contribute, covering code style, issue tracking, and pull requests.
  • Command Line Rust is a great book
    4 projects | /r/rust | 8 Dec 2023
    This is my third Rust book after the official book and Rust in Action. The other two books are great, but they were too theoretical for me. I'm a slow learner and had much trouble grokking Rust's features and idiosyncrasies. When I was done with these books, I was lost and unsure of what I could do.
  • Advice Sought: Double down on Solidity dev or switch to Product?
    1 project | /r/CryptoCurrency | 6 Dec 2023
  • Nim
    5 projects | news.ycombinator.com | 6 Dec 2023
    It's the same reason everything digital and downloadable isn't free: there's a cost to create it and there's a value to it.

    For a language developer to charge for a book about that language, I think that's a completely valid way to make some money off of their work.

    Even the Rust book, "The Rust Programming Language" is available freely online [0], but also as a print and ebook for sale via NoStarchPress [1].

    [0] https://doc.rust-lang.org/book/

    [1] https://nostarch.com/rust-programming-language-2nd-edition

  • Systems programming - Rust
    1 project | /r/learnrust | 6 Nov 2023
    You know you can just read it online right now in 2 different variants It does contain some systems programming.
  • Ask HN: How do you learn Rust in 2023?
    1 project | news.ycombinator.com | 3 Nov 2023
    I am looking at The Book (https://doc.rust-lang.org/book/), but hoped there was an amazing person on youtube.

    Yeah, I'll build something, finally trying webassembly.

  • Give me the best Resources to learn Rust
    2 projects | /r/rust | 1 Nov 2023
    https://doc.rust-lang.org/book/ https://github.com/rust-lang/rustlings https://doc.rust-lang.org/rust-by-example/

What are some alternatives?

When comparing git-internals-pdf and book you can also consider the following projects:

Crafting Interpreters - Repository for the book "Crafting Interpreters"

rust-by-example - Learn Rust with examples (Live code editor included)

CppCoreGuidelines - The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++

Rustlings - :crab: Small exercises to get you used to reading and writing Rust code!

Kalman-and-Bayesian-Filters-in-Python - Kalman Filter book using Jupyter Notebook. Focuses on building intuition and experience, not formal proofs. Includes Kalman filters,extended Kalman filters, unscented Kalman filters, particle filters, and more. All exercises include solutions.

solana-program-library - A collection of Solana programs maintained by Solana Labs

papers-we-love - Papers from the computer science community to read and discuss.

nomicon - The Dark Arts of Advanced and Unsafe Rust Programming

github-cheat-sheet - A list of cool features of Git and GitHub.

JavaScript-es6-and-beyond-ebook - A comprehensive, easy-to-follow ebook to learn everything from the basics of JavaScript to ES2020. Read more on my blog https://inspiredwebdev.com or buy it here https://leanpub.com/completeguidetomodernjavascript2020. Get the course here https://www.educative.io/courses/complete-guide-to-modern-javascript?aff=BqmB [Moved to: https://github.com/AlbertoMontalesi/The-complete-guide-to-modern-JavaScript]

rust - Empowering everyone to build reliable and efficient software.