Lazygit: A simple terminal UI for Git commands
11–20 of 143 posts
Re: Lazygit: A simple terminal UI for Git commands
#12Re: Lazygit: A simple terminal UI for Git commands
#13I maintain a bunch of git aliases in my .gitconfig for my company's rebase based workflow. They cover 90% of my 'dumb' git usages synced = pull origin master --rebase. # Update myself with master squash = rebase -i origin/master # Let me optionally squash whatever has happened since master publish = push origin HEAD --force-with-lease # Save to orig in (github) pub = push origin HEAD --force-with-lease # Save to orig…
gcmsg "git commit -m" - Git commit message
gco "git checkout" - Change branch
gd "git diff" - Files differences in staging
gl "git pull" - Pull from remote
gp "git push" - Push to remote
--- Tool looks interesting!
Re: Lazygit: A simple terminal UI for Git commands
#14 Error! Your Xcode (13.0) is too outdated
I don't have the luxury of upgrading yet. This requirement seems overly fussy and opinionated.Re: Lazygit: A simple terminal UI for Git commands
#15I wonder if anyone has gone from lazygit to magit or the other way around. As someone who uses emacs for my day to day dev work I can't see myself changing.
Re: Lazygit: A simple terminal UI for Git commands
#16If there is one thing that terrifies me it's using Git, or any source control, from the command line. No matter how long I've been in this industry, I just can't get cozy with doing a lot of heavy lifting in any shell environment. Give me the GUI all day every day.
Does any GUI offer `-p` in `git commit` and `git stash`? I literally use it 10s times per day, can't live without it once I started using it.
Re: Lazygit: A simple terminal UI for Git commands
#17If there is one thing that terrifies me it's using Git, or any source control, from the command line. No matter how long I've been in this industry, I just can't get cozy with doing a lot of heavy lifting in any shell environment. Give me the GUI all day every day.
Re: Lazygit: A simple terminal UI for Git commands
#18Re: Lazygit: A simple terminal UI for Git commands
#19I maintain a bunch of git aliases in my .gitconfig for my company's rebase based workflow. They cover 90% of my 'dumb' git usages synced = pull origin master --rebase. # Update myself with master squash = rebase -i origin/master # Let me optionally squash whatever has happened since master publish = push origin HEAD --force-with-lease # Save to orig in (github) pub = push origin HEAD --force-with-lease # Save to orig…
A must read for every cli git user.
Re: Lazygit: A simple terminal UI for Git commands
#20I maintain a bunch of git aliases in my .gitconfig for my company's rebase based workflow. They cover 90% of my 'dumb' git usages synced = pull origin master --rebase. # Update myself with master squash = rebase -i origin/master # Let me optionally squash whatever has happened since master publish = push origin HEAD --force-with-lease # Save to orig in (github) pub = push origin HEAD --force-with-lease # Save to orig…
I use Oh My ZSH git aliases. Examples: gcmsg "git commit -m" - Git commit message gco "git checkout" - Change branch gd "git diff" - Files differences in staging gl "git pull" - Pull from remote gp "git push" - Push to remote --- Tool looks interesting!