-
I've read Steve books, readme, docs and seems I know how to work with jj but every time I need to push it fails with several reasons:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 9 replies
-
Git is more restrictive than Jujutsu is. |
Beta Was this translation helpful? Give feedback.
-
There is no restriction on pushing empty commits, you can push those to GitHub all you want. But, I think most users would consider it a mistake to push commits that do not have descriptions. So, jj prevents this mistake. We currently have
You may want to colocate your repositories, so you can use git and jj in the same repository. You can create colocated repositories with |
Beta Was this translation helpful? Give feedback.
-
In case you're curiois. Convering jj to git only helped. There were conflict in the middle that I could not simple solved (3-way Carl). On a file 20 lines and I've just pushed new branch and new pull request with strange but working command. Git is awesome in helping by the way, jj must learn here. In case you're curios, it's public anyway tamadamas/zigox#1 |
Beta Was this translation helpful? Give feedback.
There is no restriction on pushing empty commits, you can push those to GitHub all you want.
But, I think most users would consider it a mistake to push commits that do not have descriptions. So, jj prevents this mistake.
We currently have
jj git push --ignore-private
for allowing private commits to be pushed. Maybe we should replace that with--ignore-restrictions
to do both jobs, or add--ignore-empty-description
. What do you think?You may want to colocate your repositories, so you can use git and jj in the same repository. You can create colocated repositories with
jj git …