persadon.com یکی از بسیاری از سرورهای مستقل ماستودون است که می توانید از آن برای شرکت در fediverse استفاده کنید.
با دوستان خود گفتگو کنید و دوستان تازه بیابید. عکس، ویدیو، و نوشته‌های خود را به اشتراک بگذارید. پرسادون بخشی از شبکهٔ اجتماعی ماستودون است و می‌خواهد محیطی ایمن و پایدار برای کاربران فارسی‌زبان باشد.

به مدیریت:

آمار کارساز:

۴۱
کاربر فعّال

#jj

۵ فرسته۵ مشارکت کننده۰ فرسته امروز

#jj is worth learning.

I spent some time learning about the Jujutsu version control tool this weekend - reading and doing tutorials. Then did some simple things in my own repos. In a weekend, I already have a better mental model of JJ's concepts than I do after working with Git daily to weekly for almost two decades. Such good design, and natively supports pushing to Git repos, so you can use it on existing projects.

If you regularly work with source control, it's worth the time to learn:

* The main repo's README (github.com/jj-vcs/jj) is an excellent written summary of the project. (and a great example of a software project landing page)
* youtu.be/LV0JzI8IcCY?si=foexHo - a 20 minute video introduction to Jujutsu by the creator.
* steveklabnik.github.io/jujutsu - Steve's Jujutsu Tutorial, spend some time with this guided tour.
* Main docs: jj-vcs.github.io/jj/latest/

A Git-compatible VCS that is both simple and powerful - jj-vcs/jj
GitHubGitHub - jj-vcs/jj: A Git-compatible VCS that is both simple and powerfulA Git-compatible VCS that is both simple and powerful - jj-vcs/jj

🔴 Today on #SystemCrafters Live, we'll take a look at `jj` (Jujutsu), an interesting distributed version control system that intends to be more user-friendly than Git while having even more advanced features.

Can `jj` be a good replacement for Git in the long term? Let's find out!

Join us here:

- youtube.com/live/zej0A21PJyc
- twitch.tv/SystemCrafters
- systemcrafters.net/live

🕐 in your time zone: time.is/compare/1800_in_Athens

#git#jj#dcvs

Had a moment today while working on niri, when jj rebasing and "delayed" conflicts helped a lot.

twitch.tv/videos/2372888936?t=

Sorry that it's unclear what I'm doing since I'm using jj-fzf hotkeys. The gist is:
- I rebase a commit down, causing conflicts.
- I resolve the conflict, which causes further conflicts up.
- I squash and merge stuff, *including conflicts*, *before* resolving the rest.
- I resolve the rest *when I want to*, after everything else.

No "resolve now!" interruptions.

🚀 New #Blog Post about JJ-FZF!

This post goes into the details of all new features in #jj-#fzf 0.25.0, usability improvements, compatibility issues, deprecation and also breakage. Better jj-log integration, a new script for email patches, an #Emacs hook for auto-snapshots, jj-describe with content diff, the new Evolog browser, privacy markers, and more...

The full blog post:
testbit.eu/2025/jj-fzf-0.25.0

And happy committing! 🎉

#jjfzf#jujutsu#git
در رشته پاسخ داده

@b0rk @prattmic

It hasn't been a problem for me yet, since I usually don't keep untracked files around.

But it seems that since version 0.22, you can add

[snapshot]
auto-track = "none()"

to #jj's config file, and it won't automatically start tracking new files!

This comment summarizes it especially well: github.com/jj-vcs/jj/issues/32

GitHubAuto-add of untracked files screws me up every time · Issue #323 · jj-vcs/jjاز durin42
در رشته پاسخ داده

To get a slightly different perspective on this issue, *how* hard is it for you to differentiate the pink and grey letters? #jj #38c3

در رشته پاسخ داده

I also wanted to get some input from y'all on a possible UI issue I encountered.

1. Install #jj jj-vcs.github.io/jj/latest/ins
2. Clone an existing Git repo using a command like `jj git clone git@github.com:ethersync/ethersync`
3. Show a graph of all changes using `jj log -r ::`

Now my question is: With your terminal's color scheme, how easy is it for you to differentiate the pink from the gray letters in the change IDs at the beginning of each line?

And do you have a color vision deficiency?

jj-vcs.github.ioInstallation and Setup - Jujutsu docs
در رشته پاسخ داده

By the way, #jj prevents you accidentally editing changes you've already published. Pushed changes are marked as immutable. But before you publish them, cleaning up your local changes needs less brain cycles for me compared to Git.

Oh! There's also `jj undo`, allowing you to try new things fearlessly.

Today at #38c3, I accidentally stumbled over a jujutsu table with @timj and others, which was my reminder to tell y'all about this tool! :) I think you might like it!

jj-vcs.github.io/jj/latest/

jj-vcs.github.ioJujutsu docs
در رشته پاسخ داده

- There's no index anymore! Changes you make to files are recorded automatically. Instead of using `git add -p` to put partial changes in a commit, you can use `jj split`, and use a diff editor of your choice to split up edits you've done into multiple changes.
- Many commands work on the current working copy by default, but you can also directly run them on older changes! For example, You can `jj split` an older change into two!

رشتهٔ دنباله دار

Here's some things that feel nice about #jj:

- It doesn't force you to deal with conflicts immediately (for example, while you're rebasing a branch). Instead, you can do it later, once you're ready.
- Changes (jj's "commits") have a stable id, even if you rewrite them.
- Anonymous branches! No need to invent silly branch names when the commits already describe what the branch does.

I've been trying the jujutsu (#jj) version control system over the past few weeks, and I think I really like it! It's Git-compatible, which means that you can use it *right now* with existing project, and to collaborate with others!

Using it feels similar to when I used git-svn to collaborate with people who insisted on using SVN back in university…

رشتهٔ دنباله دار

Here's my current jj tree while working on a niri PR. Got the PR itself on top of main, plus a few private/scratch changes also on top of main, selectively merged together into the working directory. I write some code, split it out into a change, then rebase and squash where needed, all quick and simple and with jj undo at an arm's reach.

I also started using jj-fzf which gives me quick one-shortcut access to the common split/squash/rebase, and of course the ever important log view.

در رشته پاسخ داده

@b0rk I worked with svn, mercurial, and self-imposed bazaar. I still don't love git, but wouldn't go back to any of these. Don't think I need to explain svn, but hg's model never quite clicked for me, and bzr was too slow and confusing at times (trying to accommodate multiple workflows).
Curiously I tried #jj last week after reading about it here, and I'm liking it a lot! Even though it copies some of the hg way, I think it does it better?