Git(5)
-
20220927 TIL
Django Project Repo fork 1. 가상환경 만들기 2. 가상환경 들어가고 3. git init 4. git branch -M 변경이름?? 5.git add . 6.git checkout 변경이름 7. git commit -m 'init' 8. git push -u origin FLO_last 쪽지시험 Django 프로젝트를 생성하고 실행시켜 접속해보기 오늘의 목표 - 파이참의 프로젝트 자동 생성 및 프로젝트 실행 기능 없이 명령어로만 문제 풀어보기 어제 풀었던 쪽지시험 문제 코드를 기반으로 아래 코드를 추가해주세요 사용할 명령어 python -m venv venv : 가상 환경 생성하기 venv\\scripts\\activate : (windows)가상 환경 접속하기 source ./ve..
2022.09.27 -
20220926 TIL
쪽지시험 Django 프로젝트를 생성하고 실행시켜 접속해보기 오늘의 목표 - 파이참의 프로젝트 자동 생성 및 프로젝트 실행 기능 없이 명령어로만 문제 풀어보기 사용할 명령어 python -m venv venv : 가상 환경 생성하기 venv\\scripts\\activate : (windows)가상 환경 접속하기 source ./venv/bin/activate : (mac) 가상 환경 접속하기 pip install django : django 패키지 설치하기 django-admin startproject $프로젝트이름 . : 현재 경로에 원하는 이름으로 프로젝트 생성하기 python manage.py startapp $앱이름 : 원하는 이름으로 앱 만들기 1. 프로젝트에 사용될 폴더를 생성하고, 편집기에..
2022.09.26 -
20220923 TIL
야호야호 타임어택 1. 전역변수와 지역변수 구분하기 아래 코드에서 a, b 변수가 지역변수인지 / 전역변수인지 구분하고, 코드 실행 없이 결과를 예상해서 적어주세요 답변 예제 a = 10 def test1(): b = 20 def test2(): print(a) print(b) test1() test2() # 실행이 잘 될까요? # 실행이 되지 않는다면 어떤 에러가 발생할까요? 2. mutable과 immutable 구분하기 mutable에 해당하는 자료형과 immutable에 해당하는 자료형을 적어주세요 답변 예제 mutable - ~ - ~ immutable - ~ - ~ 3. filter/map 혹은 리스트 축약식 활용해서 리스트 다뤄보기 아래 문제를 filter와 map 함수 혹은 리스트 축약식을..
2022.09.23 -
20220912 TIL
I felt guilty because I played too much during the Chuseok holiday. I should study hard again and get rid of this feeling issue Step to derturmining who is responsible and discuss what to add or subtract. Branch It feels like dividing parts so that the files don't overalap when collaborating. Merge merge about that collaborathing file Merge conflict An error when multifle people modify and merge..
2022.09.13 -
20220909 TIL
From today, I will write a TIL using Engilsh to improve my English skills. git commit i committed the process of making and modifying text files of Kimch-Jeon, Kimchi-Jjigae, Kimchi fried in the kimchi recipe folder. Connect Local Repository wiht Github Remote Repository click New button and make Repository https://github.com/OceanGim/kimch-recipe.git OceanGim/kimch-recipe a kimchi-based recipe ..
2022.09.12