티스토리 뷰

카테고리 없음

sftp-config.json

데브업 2015. 7. 21. 17:59
{
    // The tab key will cycle through the settings when first created
    
    // sftp, ftp or ftps
    "type": "sftp",
 
    "save_before_upload": true, //저장하기 전에 업로드할지 여부를 체크
    "upload_on_save": false, //업로드 하면서 저장할지 여부를 체크
    "sync_down_on_open": false, //다운로드 및 오픈하면서 동기화할지 여부를 체크
    "sync_skip_deletes": false, //삭제한 파일은 동기화에 제외시킬지 여부를 체크
    "sync_same_age": true,
    "confirm_downloads": false, //다운로드 확인 여부를 체크
    "confirm_sync": true, //동기화 여부 체크
    "confirm_overwrite_newer": false, //확인된 파일의 덮어쓰기 여부를 체크하여 새로 만들지 여부를 체크
    
    "host": "example.com",
    "user": "username",
    //"password": "password",
    //"port": "22",
    
    "remote_path": "/example/path/",
    "ignore_regexes": [
        "\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json",
        "sftp-settings\\.json", "/venv/", "\\.svn", "\\.hg", "\\.git",
        "\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini"
    ],
    //"file_permissions": "664",
    //"dir_permissions": "775",
    
    //"extra_list_connections": 0,
 
    "connect_timeout": 30,
    //"keepalive": 120,
    //"ftp_passive_mode": true,
    //"ssh_key_file": "~/.ssh/id_rsa",
    //"sftp_flags": ["-F", "/path/to/ssh_config"],
    
    //"preserve_modification_times": false,
    //"remote_time_offset_in_hours": 0,
    //"remote_encoding": "utf-8",
    //"remote_locale": "C",
}

[출처] sftp-config.json|작성자 자객의눈물