|
|
|
|
|
by wyldfire
497 days ago
|
|
Does jujutsu have anything like "git am"? I'd like to take a series of patches and jj-ify them so I can play with it. I get that maybe I can't expect to cherry pick a commit because it's naturally different from git. but if I have a patch it seems like I should be able to apply those as jj changes? |
|
Maybe something like this?
``` for patch_file in "$@"; do jj new
done ```