git init
명령어로 git 초기화git init
https://www.toptal.com/developers/gitignore
python, pycharm, VisualStudioCode, vim, macOS, Linux, zsh
.gitignore
파일 생성 후, 붙여넣기cd '프로젝트 폴더명'
touch .gitignore
vi .gitignore
############################
# gitignore.io 결과 전체 복사 #
############################
# 가장 하단 my_settings.py 추가하기
my_settings.py (보안 관련 파일은 github에 업로드되면 안됩니다.)
git add .
git commit -m "커밋 내용"
github에 repository를 만든다.
로컬(내 컴퓨터)의 Django 프로젝트와 github의 repository 연동
내 컴퓨터의 defalut branch가 master 일 경우 main 으로 변경
git branch -M main
git remote add origin repository 주소
git remote -v
git push origin main #여기서 main은 branch 이름
git branch 브랜치 이름 # 브랜치 생성
git checkout 브랜치 이름 # 해당 브랜치로 이동
python manage.py startapp "app이름"
# settings.py
INSTALLED_APPS = [
...
'products',
]
mysql -u root -p
SHOW databases; # database 확인
USE database_name; # 사용할 데이터베이스 선택
SHOW tables; # table 확인
DESC table_name; # 해당 table의 정보 확인
SELECT * FROM table_name # 해당 table의 모든 데이터 확인