class Git::Lib

def push(remote, branch = 'master', tags = false)

def push(remote, branch = 'master', tags = false)
  command('push', [remote, branch])
  command('push', ['--tags', remote]) if tags
end