python -m venv venv
source venv/Scripts/activate
pip install django
django-admin startproject project_name
cd project_name
python manage.py migrate
python manage.py runserver
pip freeze > requirements.txt
python manage.py startapp app_name
가상환경을 켜고 장고를 설치하고 pip freeze를 했어야 됐는데 그냥 냅다 pip freeze 하는 바람에 requirements.txt가 그렇게 우르르 생겼던 거
git remote -v
현재 연결되어있는 원격 레포지토리 확인
git remote remove 저장소이름
현재 연결되어 있는 원격 레포지토리 끊기
git remote -v
끊어졌는지 확인
git init
초기화
git remote add origin 깃주소
원격 저장소 새로 등록
git add .
git commit -m “커밋메세지”
git push -u origin master