@[email protected] to Programmer [email protected]English • 1 year agoGitHub Desktop or Git CLI?programming.devimagemessage-square136fedilinkarrow-up1510arrow-down132
arrow-up1478arrow-down1imageGitHub Desktop or Git CLI?programming.dev@[email protected] to Programmer [email protected]English • 1 year agomessage-square136fedilink
minus-square@[email protected]linkfedilink9•edit-21 year agousing LazyGit in tmux has changed my workflow. instead of: git add . git commit -m 'foo' fg i just: g ac foo q and it displays everything neatly Edit: apparently greater/less than symbols dont render properly on lemmy. so imagine a few (CR)'s and (C-b)'s sprinkled in
minus-square@alphabetsheeplink4•1 year agoAre you able to fall back to normal git commands if you don’t know the shortcuts? This sounds awesome until I can’t remember the syntax to do something I don’t do everyday.
minus-square@[email protected]linkfedilink2•1 year agoyou can run shell commands with :, and there may be a nicer way for git-specific commands which i dont know about. each ‘pane’ (such as ‘changed/staged files’, ‘commit log’, etc) has its own keybinds, which you can see with ?
using LazyGit in tmux has changed my workflow.
instead of:
git add . git commit -m 'foo' fg
i just:
g ac foo q
and it displays everything neatly
Edit: apparently greater/less than symbols dont render properly on lemmy. so imagine a few
(CR)
's and(C-b)
's sprinkled inAre you able to fall back to normal git commands if you don’t know the shortcuts? This sounds awesome until I can’t remember the syntax to do something I don’t do everyday.
you can run shell commands with
:
, and there may be a nicer way for git-specific commands which i dont know about.each ‘pane’ (such as ‘changed/staged files’, ‘commit log’, etc) has its own keybinds, which you can see with
?