2017년 1월 29일 일요일

sublime Text SFTP 기본 설정

{
    // The tab key will cycle through the settings when first created
    // Visit http://wbond.net/sublime_packages/sftp/settings for help
   
    // sftp, ftp or ftps
    "type": "ftp",

    "save_before_upload": true, //저장하기 전에 업로드할지 여부를 체크한다.
    "upload_on_save": true, // 업로드 하면서 저장할지 여부를 체크한다
    "sync_down_on_open": false, // 다운로드 및 오픈하면서 동기화할지 여부를 체크한다
    "sync_skip_deletes": false, //삭제한 파일은 동기화에 제외시킬지 여부를 체크한다
    "sync_same_age": true,    // 수정시간이 같은 파일 동기화 여부
    "confirm_downloads": false, //다운로드 확인 여부를 체크한다.
    "confirm_sync": true,  // 동기화 시 확인 여부
    "confirm_overwrite_newer": false, //확인된 파일의 덮어쓰기 여부를 체크하여 새로 만들지 여                                                                      부를 체크한다.

   
    "host": "주소",
    "user": "아이디",
    "password": "비밀번호",
    "port": "21",
   
    "remote_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,
    //"ftp_obey_passive_host": false,
    //"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",
    //"allow_config_upload": false,
}

Share:

0 개의 댓글:

댓글 쓰기