1. Package Install
1-1. 콘솔창을 연다.
View -> Show Console
1-2. 아래주소로 가서 자신의 서브라임 텍스트 의 버전과 동일한 파이썬 코드를 복사한후 콘솔에 복사한다.
https://packagecontrol.io/installation#st2
1-3. 설치완료후 서브라임 텍스트 재시작
1-4. Preferences -> Package Control 이 보인다.
2. FTP/SFTP 패키지 설치
2-1. Preferences -> Package Control 을 클릭
2-2. Package Control: Install Package 를 선택 (글자를 입력하면 자동완성으로 보여준다)
2-3. SFTP 검색하여 설치한다.
3. FTP/SFTP 설정
* 서브라임 텍스트의 원격지원은 로컬과 원격지를 동기화 하는 방식으로 FTP/SFTP 를 지원한다.
3-1. 로컬에 프로젝트 폴더를 만든다.
3-2. File -> Open Folder 해서 폴더선택
3-3. 좌측 FOLDERS 에서 마우스 우측키 SFTP/FTP -> Map to Remote 하면 sftp-config.json 파일이 열린다.
3-4. 아래는 현재 설정해서 쓰고있는 FTP 설정이다.
3-5. 좌측 FOLDERS 에서 마우스 우측키 SFTP/FTP 의 세부메뉴를 확인하고 필요한 업 or 다운을 실행한다.
{ // 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": true, // 파일열때 다운로드 후 열기 "sync_skip_deletes": false, "sync_same_age": true, "confirm_downloads": false, "confirm_sync": true, "confirm_overwrite_newer": false, "host": "www.yourdomain.com", "user": "your_user", "password": "your_password", "port": "21", "remote_path": "/www/", "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, }
'Dev Tool > Sublime Text 2' 카테고리의 다른 글
DocBlock - 주석 플러그인 (0) | 2015.05.18 |
---|---|
코드 정렬 - Aligment (0) | 2015.05.15 |
Sublime Text 에서 Vi 모드 사용하기 (0) | 2015.05.14 |
탭 설정 - 스페이스로 대체하기 (0) | 2015.05.14 |
테마 및 폰트 설정 (0) | 2015.05.12 |