Your ROOT_URL in app.ini is https://git.ondrovo.com/ but you are visiting http://159.69.29.240:49153/MightyPork/lazy-git/src/commit/bca6e8b4a82327b01ef61ca4644b0b63c0ee02ff/README.md You should set ROOT_URL correctly, otherwise the web may not work correctly.
Command-line shortcuts to make git easier
lazy-git/README.md

720 B

lazy-git

Script for automating the most common git tasks. If you are lazy, this may be for you :)

Usage

Clone github repo

Commands you want:

  • git clone https://github.com/MightyPork/lazy-git

With LazyGit:

ghc MightyPork/lazy-git

Check git status

Commands you want:

  • git status

With LazyGit:

g check

Pull from origin

Commands you want:

  • git pull

With LazyGit:

g pull

Commit and push to origin

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.