Command-line shortcuts to make git easier
Ondřej Hruška f07bac1533 removed "origin master" to allow working with other branches 11 years ago
.gitignore added .gitignore 11 years ago
LICENSE Initial commit 11 years ago
README.md improved readme 11 years ago
g removed "origin master" to allow working with other branches 11 years ago
github-clone added github clone script 11 years ago

README.md

lazy-git

Script for automating the most common git tasks.

Usage

Check status

  • git status
g check

Pull from origin/master

  • git pull
g pull

Send to origin/master

  • git status (if no changes, stop here)
  • git add --all
  • git commit -m "...." (ask for message)
  • git push origin master
g send