본문 바로가기

전체 글

(1836)
[WakaTime]Week 1 of January(20.01.01 ~ 20.01.05) WakaTime 20.01.01 ~ 20.01.05 Coding : 1hrs 44min IDEL : VS Code Language : Python / JSON
[Support Period]제품 지원 기간(한글과컴퓨터 / Windows / WindowsServer / MSOffice / Adobe) 한글과 컴퓨터 한컴오피스 2020 ○ ~ 2026년 ○ 한컴오피스 2018 × ~ 2026년 ○ 한컴오피스 NEO × ~ 2025년 ○ 한컴오피스 2014 VP × ~ 2021년 ○ 한컴오피스 2014 × ~ 2020년 ○ 한컴오피스 2010 SE+ × ~ 2019년 ○ 한컴오피스 2010 SE × 종료 × 한컴오피스 2010 × 종료 × 한컴오피스 2007 이하 제품 × 종료 × 한컴오피스 한글 2014 VP for Mac ○ ~ 2022년 ○ 한컴오피스 한글 2014 for Mac × ~ 2020년 ○ 한컴오피스 ○ 신규 앱 출시 시 ○ 이지포토 3 VP ○ ~ 2021년 ○ 이지포토 3 × ~ 2020년 ○ 한컴스페이스 ○ 서비스 운영 기간 내 ○ Windows 7, Windows 8.1 Windo..
[Windows10]Windows 10 전환 후 정부 사이트 오류 발생 해결방안 Windows 10 전환 후 많은 오류와 이상 현상에 매일 매일 공부하는 중입니다. 현재 Windows 7에서는 정상적으로 오픈됬던 정부 사이트가 Windows 10 전환 후 안되는 현상이 벌어지고 있습니다. 이에 몇가지 간단하지만 해결 방안을 마련했습니다. 1. 기본 앱 설정 확인 시작 > 설정 앱 기본 앱 > 웹 브라우져 > Internet Explorer 선택 2. 호환성 보기 설정 호환성 보기 설정 호환성 보기 설정에서 들어가는 정부사이트가 있나 보고 화면이 깨지면 추가해서 테스트 일부 정부사이트는 호환성 보기를 하면 화면이 깨지는 현상이 있으니 반드시 확인 정부/지자체 운영사이트 : https://www.gov.kr/portal/orgSite 정부/지자체 운영사이트 | 기관 정보 | 정부24 감..
[GIT]Branch Merge - Merge same document locations(브랜치 병합 - 같은 문서 같은 위치 병합) $ cd documents $ cd git $ git init manual-4 $ vim work.txt $ git add work.txt $ git commit -m "work 1" $ git log --all --graph --oneline $ git branch o2 $ vim work.txt $ git commit -am "master work 2" $ git log --all --graph --oneline $ git checkout o2 $ vim work.txt $ git commit -am "o2 work 2" $ git log --all --graph --oneline $ git checkout master $ git merge o2 $ git status $ vim work.txt $ ..
[GIT]Branch Merge - Merge the same document to another location(브랜치 병합 - 같은 문서 다른 위치 병합) $ cd documents $ cd git $ git init manual-3 $ cd manual-3 $ vim work.txt $ git add work.txt $ git commit -m "work 1" $ git log --all --graph --oneline $ git branch o2 $ vim work.txt $ git commit -am "mater work 2" $ git log --all --graph --oneline $ git checkout o2 $ vim work.txt $ git commit -am "o2 work 2" $ git log --all --graph --oneline $ git checkout master $ git merge o2 $ git log --all -..
[GIT]Branch Merge - Merge different files(브런치 병합 - 서로 다른 파일 병합) 1. Branch Merge : 브랜치 작업을 마무리하고 기존 브랜치와 합치는 작업 $ cd documents $ cd git $ git init manual-2 $ cd manual-2 $ vim work.txt $ git add work.txt $ git commit -m "work 1" $ git log --all --graph --oneline $ git branch o2 $ vim master.txt $ git add master.txt $ git commit -m "master work 2" $ git log --all --graph --oneline $ git checkout o2 $ vim o2.txt $ git add o2.txt $ git commit -m "o2 work 2" $ gi..
[GIT]Branch Basic Usage(브런치 기본 사용법) $ vim work.txt $ vim apple.txt $ git add . $ git commit -m "apple content 4" $ git log --all --graph --oneline $ git checkout google $ vim work.txt $ vim google.txt $ git add . $ git commit -m "google content 4" $ git log --all --graph --oneline $ git checkout ms $ vim work.txt $ vim google.txt $ git add . $ git commit -m "ms content 4" $ git log --all --graph --oneline $ git log master..apple $..
[GIT]Branch Generation(브랜치 생성) 1. 기본 설정 $ mkdir manual $ cd manual $ git init $ ls -al $ vim work.txt $ git add work.txt $ git commit -m "work 1" $ git log $ vim work.txt $ git commit -am "work 2" $ vim work.txt $ git commit -am "work 3" $ git log 2. Branch : 커밋을 가르키는 포인터 / master 브랜치에서 뻗어 나오는 새 브랜치를 만드는 것 3. git branch : 브랜치를 확인 $ git branch 4. git branch 브랜치명 : 브랜치명을 생성 $ git branch $ git branch apple $ git branch $ git bra..