class Push

Public Instance Methods

update() click to toggle source
# File lib/push.rb, line 3
def update
        if(File.exists?('.git') && `git config --list`.include?('user.name='))
                add 'git config --global push.default simple'
                self <<  'git push' if Git.branch != 'develop' && Internet.available?
        end
end