Command-line shortcuts to make git easier
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ondřej Hruška 103a7a96d9 added github clone script 10 years ago
.gitignore added .gitignore 10 years ago
LICENSE Initial commit 10 years ago
README.md improved readme 10 years ago
g Added the script 10 years ago
github-clone added github clone script 10 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