lib/tasks/push.rb in dev-2.0.141 vs lib/tasks/push.rb in dev-2.0.142
- old
+ new
@@ -1,4 +1,7 @@
+desc 'performs a git push'
+task :push do Tasks.execute_task :push;end
+
class Push < Array
def update
if(File.exists?('.git') && `git config --list`.include?('user.name='))
self << 'git push'
self << 'git push --tags'# if Git.branch != 'develop' && Internet.available?
\ No newline at end of file