==vs code terminal에서 진행==
1. manage.py 있는 폴더에 .gitignore 파일 만들기
2. 그리고 무시해도되는 파일들을 쭉 쓸건데
https://www.gitignore.io/
이 사이트에서 다 가져올 수 있음ㅎㅎ
django -> create!
django를 github에 올릴 때 필요없는 것들 쭉 정리해놓은거~
3. 이정도만 .gitignore에 복붙~!
# Created by https://www.gitignore.io/api/django # Edit at https://www.gitignore.io/?templates=django ### Django ### *.log *.pot *.pyc __pycache__/ local_settings.py db.sqlite3 media
4. git version 확인
git --version
5. git update??
나중에
* git config --global user.name "daheeahn"
* git config --global user.email "deg9810@likelion.org"
6. git init
/e/0_lilelion7/week2
(manage.py가 있는 폴더의 그 위 폴더임!)
그럼 (master)가 생김!!
7. git status
상태 체크~
8. git을 staging area로 add~
git add .
or
git add -A
=> staging area로 옮겨짐! 임시저장
9. git commit -m "commit message"
10. html 파일 변경해보기
11., 다시 git status로 상황 확인
12. git add .
13. git commit -m "commit message"
======여기까지는 로컬저장소 이용, 이제부터 github에 코드 올려보기!=======
14. github repository 생성
15.
git remote add origin https://github.com/daheeahn/likelion_week1_html.git git push -u origin master
=> push 성공!
그동안의 commit log 나옴~
'Development > Django(멋쟁이사자처럼 7기 운영진)' 카테고리의 다른 글
[멋사7기] 3주차 - 2. model&admin 이론, 실습 / 3. queryset & method (0) | 2019.01.24 |
---|---|
[멋사7기] Django에 Css/Bootstrap 적용하기 (0) | 2019.01.17 |
[멋사7기] 2주차 - 2. wordcount 실습 (week2 폴더) (0) | 2019.01.16 |
[멋사7기] 1.5주차 - MTV 패턴 (0) | 2019.01.10 |
[멋사7기] 1주차 - 2. Hello World 이론 / 3. Hello World 실습 (0) | 2019.01.09 |