1. Temp 폴더

C:\Users\[사용자ID]\AppData\Local

 

2. 두번째 Temp 폴더

경로 : C:\Windows\Temp

설명 : 씰데없는 파일들.(현재 열려있는 파일은 지워지지 않는데 그냥 건너뛰기 하세요)

 

3. DLL캐쉬 폴더

 

경로 :  C:\WINDOWS\system32\dllcache

설명 : 윈도우 설치 초기 관련 파일들이 있는 곳인데 삭제해도 무방

 

4. 오피스 설치 파일 폴더

 

경로 : C:\MSOcache

설명 : 오피스(Office) 프로그램을 설치하고 나면 생기는 폴더 입니다. 더 추가로 설치할 기능이 없다면 삭제하셔도 됩니다. 


5. 윈도우 인스톨 폴더(Install Folder)

경로 : C:\windows\installer

설명 : 저 폴더를 한방에 다 지우시면 안됩니다. C:\windows\installer\$PatchCache$\Managed 이 폴더만 지우도록 합시다.

 

6. 디스트리뷰션 다운로드 폴더

경로 : C:\WINDOWS\SoftwareDistribution\Download

설명 : 윈도우 및 오피스군의 업데이트 파일들이 있는곳.

 

 

 

참조링크 https://2hyes.tistory.com/91

 

 

- git 설치 링크 https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

 

- github에서 생성한 repository 주소를 복사하여 메모장에 준비해 두자

 

 

- github에 업로드 진행 할 프로젝트 마우스 우클릭 > Git Bash Here

- Git Cmd 창이 뜨면 초기 설정을 아래 참조 이미지 순으로 진행

git config --global user.name "github name"
git config --global user.email "github email"
git init
git add .
git commit -m "저장코멘트"
git remote add origin https://github.com/repository주소.git
git push -u origin master

+ Recent posts