Cretezy / lazyjj

TUI for Jujutsu/jj
Apache License 2.0
32 stars 2 forks source link

Push selected commit #47

Open maralorn opened 2 days ago

maralorn commented 2 days ago

I found it a bit unintutive that p seems to always push @ instead of the change selected in the log.

Cretezy commented 2 days ago

p does jj git push, which does: "By default, pushes any branches pointing to remote_branches(remote=<remote>)..@".

I believe we should probably do remote_branches(remote=<remote>)..$CURRENT_CHANGE_ID, which would match the behavior you are expecting.