Method: Bdsync::Lfs#remote_rename

Defined in:
lib/bdsync/lfs.rb

#remote_rename(remote_path, new_remote_path) ⇒ Object



76
77
78
79
# File 'lib/bdsync/lfs.rb', line 76

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