bin/git-pick in git-pivotal-0.1.3 vs bin/git-pick in git-pivotal-0.2.0
- old
+ new
@@ -1,8 +1,9 @@
#!/usr/bin/env ruby
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
require 'pivotal'
-require 'commands/pick'
+require 'commands/feature'
-exit Pick.new(*ARGV).run!
+STDOUT.puts "DEPRECATION WARNING: git pick has been deprecated. Please use git feature instead."
+exit Commands::Feature.new(STDIN, STDOUT, *ARGV).run!
\ No newline at end of file