simple_gas (gas rework)
Description
Gas is a mighty utility that helps you keep track of your multiple git authors. Add them to gas and switch between them instantly! Great if you use one author at work and one at home or if you are doing pair programming.
Installation
The best way to install gas is with RubyGems:
$ [sudo] gem install simple_gasYou can install from source:
$ cd gas/
$ bundle
$ rake installRunning
The default task is to list authors
$ gas$ gas listThis lists the authors that are set up in the ~/.gas/gas.authors file.
You can import your current user by giving it a nickname
$ gas import current_userTo add an author use, add
$ gas add walle "Fredrik Wallgren" fredrik.wallgren@gmail.comAnd the main usage, use
$ gas use walleTo delete it again use, delete
$ gas delete walleGas can also juggle your id_rsa ssh keys, which is helpful for uploading to github between multiple accounts. Indespensible for teachers who need to instruct their students on how to use github!
$ gas add Njax NotarySojac no@mail.com
Do you want gas to handle switching rsa keys for this user?
[y/n]View gas -h to see all options.