Wednesday, December 14, 2011

맥에서 한글 파일 압축시 윈도우에서 파일명이 깨지는 경우

http://www.sopht.jp/en/cleanarchiver/downloads.html

위 주소에서 최신버전(3.0a6)을 다운로드한다.

화면에서 encoding을 cp949로 설정하고,

파일을 드래그 앤 드롭하여 압축한다.

Sunday, December 11, 2011

GIT 로컬 소스에서 부터 원격 서버 설정.

로컬에 있는 소스를 원격에 업로드/임포트(import)해서 초기화 하는 방법은 아래와 같다.

git init

git add .

git commit -m ‘initial import’

git remote add origin <<remote url.git>>

git push origin master

http://stackoverflow.com/questions/4658606/import-existing-source-code-to-github