|
1 year ago | |
---|---|---|
.gitignore | 5 years ago | |
LICENSE | 5 years ago | |
README.md | 1 year ago | |
g | 1 year ago | |
ghc | 5 years ago |
Script for automating the most common git tasks. If you are lazy, this may be for you :)
Commands you want:
git clone https://github.com/MightyPork/lazy-git
With LazyGit:
ghc MightyPork/lazy-git
Commands you want:
git status
With LazyGit:
g check
Commands you want:
git pull
With LazyGit:
g pull
Commands you want:
git status
(if no changes, stop here)git add --all
git commit -m "...."
(ask for message)git push
With LazyGit:
g send
g send
is interactive, it shows you the changes and prompts for a message.
The operation can be canceled without damage by hitting ^C at the commit prompt.
This is like g send
, but without pushing the result. Use g push
or git push
to send your new commits to the server.
g add
(g commit
and g stage
are aliases)