Method: Bdsync::Lfs#remote_rename

Defined in:
lib/bdsync/lfs.rb

#remote_rename(remote_path, new_remote_path) ⇒ Object



80
81
82
83
# File 'lib/bdsync/lfs.rb', line 80

def remote_rename remote_path, new_remote_path
    puts "#{Utils.caller_info 1} mv #{remote_path} #{new_remote_path}".yellow
    FileUtils.mv remote_path, new_remote_path
end