即在Adobe Dreamweaver的它可能保存的文件自動複製設置到其他項目的具體位置。如何通過Sublime Text 2實現這一目標?崇高文字2:複製文件保存/備份到另一個文件夾
我在Windows 7上,我不想安裝第三方工具(如rsync的用於Windows)觀看文件夾,然後採取一個變化的行動。我只想將我的文件保存到兩個位置(本地SVN存儲庫和第二個Windows遠程共享文件夾)。
有沒有這樣做的插件?
即在Adobe Dreamweaver的它可能保存的文件自動複製設置到其他項目的具體位置。如何通過Sublime Text 2實現這一目標?崇高文字2:複製文件保存/備份到另一個文件夾
我在Windows 7上,我不想安裝第三方工具(如rsync的用於Windows)觀看文件夾,然後採取一個變化的行動。我只想將我的文件保存到兩個位置(本地SVN存儲庫和第二個Windows遠程共享文件夾)。
有沒有這樣做的插件?
現在有適合我的需求的插件:SublimeFileSync
您可以檢查出Automatic Backup Plugin。它不會在特定於項目的位置備份文件,但它是每次保存文件時自動保存備份的好方法。
可惜這不是(還)可以讀取項目的相對目錄路徑,所以我不能重寫插件代碼來將文件的副本保存到正確的位置。 我現在已經成立了一個FTP服務器上我的測試位置,我用的是[崇高SFTP插件(http://wbond.net/sublime_packages/sftp) – dennis
https://github.com/akalongman/sublimetext-autobackups
配置選項:
{
// Don't make changes to this file directly as they can get wiped out when the
// plugin is updated. Instead transfer what you need to the 'Settings - User' file.
// The directory where we'll keep our backups. If empty, we'll try to put them in
// ~/sublime_backups
"backup_dir": "~/sublime_backups",
// If true, also save a backup copy any time a file is opened (if backup file not exists)
"backup_on_open_file": true,
// If true, backups saved per day, in separate folders, for example ~/sublime_backups/2013-05-23/myfile.php
"backup_per_day": true,
// If set, backups saved per second. possible values: false, "folder" or "file"
// false - disabled backup per second
// "folder" - backup example D:/Sublime Text Backups/2013-05-23/095034/myfile.php
// "file" - backup example D:/Sublime Text Backups/2013-05-23/myfile_095034.php
// to use this feature, you must have enabled backup_per_day setting
"backup_per_time": "file",
// Files larger than this many bytes won't be backed up.
"max_backup_file_size_bytes": 262144, // = 256 KB
// Files older than X days will be deleted. If 0 - auto delete disabled
"delete_old_backups": 0, // days to delete
// If true, backup file opened in same line as cursor in original file
"open_in_same_line": true,
// If true, show backup previews (only in ST3)
"show_previews": true
}
出於好奇,請問同步工作?例如,它是否只同步在源文件夾上更改的文件?如果目標中的文件發生更改,該怎麼辦?他們會被覆蓋嗎?我問的原因是,我將使用它將項目源文件夾(版本控制下)中的文件複製到Web服務器。網絡服務器副本將有許多生成的文件(例如圖像,日誌文件等),我不想刪除,因爲項目源是乾淨的/沒有任何這些生成的文件... – Prembo
這正是我所需要的!謝謝! – Paul