tags:

views:

34

answers:

1

What are the pro/con's of using: - hub - github-gem - or just git when working with github?

+3  A: 
  • hub:
    pros: good integration with git, mask all github specifics
    cons: needs ruby

  • github-gem
    pros: see hub, it can be considered as one of the gems
    cons: needs ruby, gem startup time

  • git
    pros: doesn't obfuscate anything (especially in case or error message)
    cons: a lot more commands to type ;)

VonC