github 연동 방식 메모 github에 remote repository를 생성한후에local에서 git init으로 현재 디렉토리를 git 디렉토리로 만든후현재 변경된 내용을 git commit으로 local에 저장하고git remote add origin master https://github.com/bwcho75/JavaScriptTraining.git 를 해서, 현재 디렉토리를 github의 디렉토리와 연결한후git push를 통해서 remote로 밀어넣으면 됨 ALM/SCM/VCS 2014.01.12
AngularJS 개발 환경 준비하기 Sublime Text 2 에디터 1. Package installer 설치 방법메뉴에서 View > Show Console을 선택. Console 창이 열리면 아래와 같은 명령어를 이력 import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wb.. 프로그래밍/JavaScript 2014.01.12