Development/Django(멋쟁이사자처럼 7기 운영진)

[멋사7기] vscode -> github에 올리기 (wordcount project)

안다희 2019. 1. 16. 23:12
728x90

==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 나옴~







출처: https://mingos-habitat.tistory.com/34 [밍고의서식지:티스토리]