'코딩 연습/Github'에 해당되는 글 2건

깃에서 제외할 파일을 지정할 때는 .gitignore 파일에서 제외할 부분을 목록으로 작성해서 제외시켰었다.

(https://practice-a-lot.tistory.com/26)


이번에는 폼을 통해 저장된 사진을 깃에서 제외하는 방법이다.

동일하게 .gitignore 파일에서 작성한다.


1) *.jpg *.pgn 형태로 입력하면 해당 확장자에 걸리는 모든 사진을 추출


1
2
3
db.sqlite3
*.jpg
*.png
cs


문제점은 제외하지 말아야할 사진도 포함되므로 좋은 방법이 아니다.



2) 사진이 저장된 미디어 폴더를 지정


1
2
db.sqlite3
media/
cs



'코딩 연습 > Github' 카테고리의 다른 글

깃에서 필요 없는 것 빼기  (0) 2018.10.11
블로그 이미지

쵸잇

,

깃허브에 파일을 올리기 전에 커밋되지않은 파일을 확인한다.


1
git status
cs


입력을 하면


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
On branch master
 
No commits yet
 
Untracked files:
  (use "git add <file>..." to include in what will be committed)
 
        .gitignore
        README.md
        blog/
        db.sqlite3
        feed/
        manage.py
        requirements.txt
        static/
        templates/
 
nothing added to commit but untracked files present (use "git add" to track)
cs


다음과 같이 출력이 되는데, 우리는 db.sqlite3까지 굳이 커밋해줄 필요가 없다. 대용량이기도 하고.

그렇다고 삭제할 순 없으니 .gitignore을 활용해 파일을 숨길 수 있다.


1
echo db.sqlite3 >> .gitignore
cs


입력하면 .gitignore 파일을 만들어 db.sqlite3를 리스트에 등록한다.


다시 git status를 하면


1
2
3
4
5
6
7
8
9
10
Untracked files:
  (use "git add <file>..." to include in what will be committed)
 
        .gitignore
        blog/
        feed/
        manage.py
        requirements.txt
        static/
        templates/
cs


다음과 같이 보이지 않게 된다.

'코딩 연습 > Github' 카테고리의 다른 글

깃에서 미디어 폴더 제외하기  (0) 2018.12.02
블로그 이미지

쵸잇

,