본문 바로가기

웹도구 및 Plugin

(6)
git error: update_ref failed for ref commit message 변경 1. git log 확인 2. commit id 확인 3. git rebase --interactive [commit id] 4. pick을 edit로 변경 5. 저장 - 저장 command > !wq - 나가기 > :q! 6. git commit --amend, git rebase --continue를 실행 ----------------- 아래와 같은 메시지가 발생할 경우 C:\DEV\8_dev\fdp-ide>git rebase --continue error: update_ref failed for ref 'refs/heads/feature-IDE-1399-Properties-editingtype처리-1': cannot lock ref 'refs/heads/feature..
bin/roslyn/csc.exe' 경로의 일부를 찾을 수 없습니다. 간단한 대답 - 패키지 관리자 콘솔에서 다음을 실행하십시오.방법1) PM > update-package Microsoft.CodeDom.Providers.DotNetCompilerPlatform -r 방법2) web.config 스페이바 넣고 저장 후 빌드하면 해결됩니다.
Git Bash를 이용한 branch 삭제 [ Local Branch 삭제 ]1. 특정 branch 삭제$ git branch -d "[브런치명]"2. 하위 폴더안의 branch 전체 삭제 $ git branch | grep '[상위폴더]' | xargs git branch -d 3. 강제 branch 삭제 error : The branch '브런치이름' is not fully merged. If you are sure you want to delete it, run 'git branch -D '브런치이름'. branch를 삭제하려고 하는데 위와 같은 에러가 발생한다면. "-D" 대문자를 입력한다.$ git branch -D "[브런치명]"$ git branch | grep '[상위폴더]' | xargs git branch -D [ Remote ..
이미 만들어진 프로젝트 Git 올리기 1. Create new repository ※ Clone URL은 Create new repository 생성 후 다음 페이지에서 나옵니다.2. Git Bash Open3. 프로젝트 저장 폴더로 이동 $ cd "c:\WebSite" 4. 명령어를 입력합니다.$ git init $ git add .$ git commit -m "first commit" ※ $ git commit -m "{ comment }"$ git remote add origin { github Clone URL } ※ Clone URL은 Create new repository 생성 후 다음 페이지에서 나옵니다. $ git push origin master 5. git repository를 확인합니다.
SyntaxHighlighter를 이용한 소스코드 입력하기 SyntaxHighlighter 사이트 => http://alexgorbatchev.com/SyntaxHighlighter/manual/brushes/ 시작하기 앞서,Torchpad Wiki, Naver Blog, Tistory Blog를 사용하면서, Torchpad Wiki의 마크다운 방식이 매우 흡족스러웠다. 하지만 블로그를 운영하기에는 Wiki는 한계를 느꼇고 결국 Tistory로 옮겨왔습니다. 개발자이다보니 소스 코드를 게시하고 싶지만 다음 에디터로는 역시 만족스럽지 못해 매우 아쉬운 감이 있었습니다. 그러다 구글 검색을 해봤는데 왠걸 JavaScript로 개발된 "Syntaxhighlighter"라는 것이 있었습니다. "Syntaxhighlighter"는 개발자가 웹 사이트에 코드를 표시하는데 ..
[ CKEditor ] 간략 작동 [ CKEditor ] 간략 작동 1. View 2. config.js CKEDITOR.editorConfig = function (config) { config.toolbar = [{ name: 'tools', items: ['Maximize','Source'] }]; //config.removeButtons = 'CodeSnippet,NewPage,Save,Preview,Print,Templates,Bold,RemoveFormat,Italic,Underline,Strike,Subscript,Superscript,NumberedList,BulletedList,Indent,Outdent,Blockquote,CreateDiv,BidiLtr,BidiRtl,Language,Anchor,Flash,Table,H..