git-workshop VS jj

Compare git-workshop vs jj and see what are their differences.

git-workshop

A gentle introduction to git, using proper storytelling. (by ciberado)

jj

A Git-compatible VCS that is both simple and powerful (by martinvonz)
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
git-workshop jj
1 104
8 8,104
- -
8.2 10.0
about 1 year ago 3 days ago
Rust
Apache License 2.0 Apache License 2.0
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-workshop

Posts with mentions or reviews of git-workshop. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-07.
  • A beginner's guide to Git version control
    4 projects | news.ycombinator.com | 7 Aug 2023
    I have contradictory feelings regarding git. For more than ten years, I was using it daily without really understanding the internals... and I was often confused and frustrated. After investing some time learning how the Directed Acyclic Graph works, suddenly everything made much more sense.

    And, yes: it is good to learn the underlying fundamentals of the technology we are using. But, on the other hand, it denotes a rather poor abstraction from the UX point of view, imho.

    Now, when I deliver git training, I start by explaining the DAG and how there is no magic, only git. By the way, the notes and exercises of the course are in my GitHub account[1], feel free to check it out if you think it can be useful.

    [1] https://github.com/ciberado/git-workshop (https://ciberado.github.io/git-workshop/)

jj

Posts with mentions or reviews of jj. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-07-08.
  • Circles of Truth: Overcomplicating simple commands
    1 project | dev.to | 16 Aug 2024
    Honestly, that's less keystrokes than adding a shellAlias. If you aren't sold on using nix to manage your system's configuration, this seems overcomplicated. If you use nix, then you are already probably frustrated at keeping your nix configuration in sync with quick little optimizations you do on a regular basis. With nix, everything is source controlled. If you are a dotfiler, then you would still have to commit your changes. I guess that's true in my solution as well. The git add in my update is probably the most dubious element of this entire schrade. That is unless, you are using jj.
  • Jujutsu: A Next Generation Replacement for Git
    5 projects | news.ycombinator.com | 8 Jul 2024
    Here, we are working on change 'pzoqtwuv'. (@ means the working copy.) There are colors in the real CLI to make the differences more obvious, and to show you unique prefixes, so for example, you probably only need 'p' or 'pz' instead of 'pzoqtwuv' to uniquely identify the change. I'll use the full IDs since there's no syntax highlighting here.

    We have two anonymous branches here. They have the change IDs of 'xrslwzvq' and 'yykpmnuq'. The log output shows the summary line of their messages, so we can see "create hello and goodbye functions" on one branch, and "add better documentation" on the other.

    You don't need an additional branch name: the change ID is already there. If you want to add even more better documentation, 'jj new yykpmnuq' (or again, likely 'jj new yy' in practice) and you're off to the races. (jj new makes a new change off of the parent you specify.)

    That's all there is to it. We already have the commit messages and IDs, giving an additional identifier doesn't help that much.

    (And if you're in a larger repo with more outstanding branches, you can ask 'jj log' to show specific subsets of commits. It has a powerful DSL that lets you do so. For example, say you only want to see your commits, 'jj log -r 'mine()'' can do that for you.)

    > Auto commit of saved files? How do I commit the things I want without leaving all sorts of junk I don’t wanna share in my history?

    The simplest answer is "you put that stuff in your .gitignore and it never gets committed." That said, it is recognized that sometimes that is not possible or easy. See https://github.com/martinvonz/jj/issues/323 for the current discussion about how to maybe support alternatives here.

    > I have no impression of how this makes anything easier.

    My take on this is that jj has fewer but also more orthogonal concepts. Naming things is hard. I don't like to do it. Not needing to name branches is really nice, as I don't really lose anything by not naming them, and I no longer have to name them.

    With regards to some other stuff, the "auto commit of saved files" really means that jj turns two of git's concepts, commits and the index, into one concept: commits. How is that easier? Well, I don't need to learn two sets of tools for dealing with the index vs a commit. For example, git has two kinds of resets: hard and soft. This is because git needs to have two sets of behaviors to deal with both concepts here, as git reset is about changing the index but maybe or maybe not the working tree. All of these distinctions don't matter in jj, because it's all just commits, so you use regular old tools on commits for them.

  • A Git story: Not so fun this time
    5 projects | news.ycombinator.com | 3 Jul 2024
  • A Better Merge Workflow with Jujutsu
    7 projects | news.ycombinator.com | 1 Jul 2024
    I completely missed the `` argument despite being the first thing documented under `jj log`. That's definitely the most critical feature out of my list, thank you for pointing that out!

    Also, it's great to hear that you're willing to accept contributions for those features. If/when Jujutsu gains critical mass, I imagine that someone will end up contributing these features.

    Regarding rename detection, it seems like that is actively being worked on, which is really encouraging! https://github.com/martinvonz/jj/pull/3574

  • Versioning FreeCAD Files with Git
    4 projects | news.ycombinator.com | 18 Jun 2024
    martinvoz/jj: https://github.com/martinvonz/jj :

    > Working-copy-as-a-commit: Changes to files are recorded automatically as normal commits, and amended on every subsequent change. This "snapshot" design simplifies the user-facing data model (commits are the only visible object), simplifies internal algorithms, and completely subsumes features like Git's stashes or the index/staging-area.

  • Show HN: Shpool, a Lightweight Tmux Alternative
    17 projects | news.ycombinator.com | 13 Jun 2024
    Change-Id likely(?) comes from https://github.com/martinvonz/jj, which is used internally at Google with the Piper forge. (I think, I am not a Googler, just a happy jj user)
  • The Weird Nerd comes with trade-offs
    1 project | news.ycombinator.com | 9 Jun 2024
    IMO Open Source software communities are where folks like you can really thrive. They're much closer at something like a meritocracy than traditional workplaces.

    > I want to make the next-gen version control system

    While you certainly could invent one yourself, you could consider contributing to popular ones like git/mercurial. It'd help teach you both the positive and the negative aspects of their design choices. Also you could consider learning from newer approaches like Jujutsu [1] or Pijul [2] on your way to designing the next-gen system. Good luck!

    [1] https://github.com/martinvonz/jj

    [2] https://pijul.org/

  • Julia Evans' Git Cheat Sheet [pdf]
    7 projects | news.ycombinator.com | 26 May 2024
  • Grace Version Control System
    4 projects | news.ycombinator.com | 6 May 2024
  • Why Don't I Like Git More?
    4 projects | news.ycombinator.com | 5 Apr 2024

What are some alternatives?

When comparing git-workshop and jj you can also consider the following projects:

project-based-learning - Curated list of project-based tutorials [Moved to: https://github.com/practical-tutorials/project-based-learning]

git-branchless - High-velocity, monorepo-scale workflow for Git

first-timers - Complete your first open-source contribution! 🚀

Git - Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentation/SubmittingPatches procedure for any of your improvements.

100-Days-Of-ML-Code - 100 Days of ML Coding

forgit - :zzz: A utility tool powered by fzf for using git interactively.

project-based-learning - Curated list of project-based tutorials

EdenSCM - A Scalable, User-Friendly Source Control System. [Moved to: https://github.com/facebook/sapling]

nitter - Alternative Twitter front-end

git-imerge - Incremental merge for git

pre-commit - A framework for managing and maintaining multi-language pre-commit hooks.

git-issue - Git-based decentralized issue management

InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured