Skip to content

GitSnapShot is a ZSH thin wrapper for Git commands for easier and simpler usage

Notifications You must be signed in to change notification settings

ken-okabe/GitSnapShot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

#GitSnapShot

GitSnapShot is a ZSH thin wrapper for Git commands for easier and simpler usage

GitSnapShot inherits Full Git Commands and adds handy Shortcuts.

###Usage

####snapshot for a New version

ss

is equivalent to

git add -A -v
git commit -m "commit"

####snapshot for a New version with a Commit message

ss @"fixed the bug"

is equivalent to

git add -A -v
git commit -m "fixed the bug"

####Compare to the Latest snapshot = Current version

ss 0

is equivalent to

git diff head~0

####Compare to the Second Latest snapshot = Previous version

ss 1

is equivalent to

git diff head~1

####Everything else is completely inherited from Git commands

ss --help

is equivalent to

git --help

Any Git commands ! !

ss push origin master

is equivalent to

git push origin master

MIT License

About

GitSnapShot is a ZSH thin wrapper for Git commands for easier and simpler usage

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages