1. github에 가입해준다. 아래 링크를 통해서 가입해준다~
2. Your repositories Click!
3. New를 Click!
4. Repository의 name을 정해준 뒤, 파란색 펜 부분은 optional하게 자기가 하고 싶은데로 선택해주면 된다. 완료 되었으면, Create repository Click!
5. 이렇게 내가 원한 option데로 생성이 됐음을 확인할수 있다!
6. 이제 upload할 파일을 우클릭 후, Git Bash Here Click!
7. 다음과 같이 로그인을 해준다!
git config --global user.name "Your_Name"
git config --global user.emial "Your_Email"
8. 다음과 같이 또 적어준다!
# git 파일 생성
1. git init
# 선택한 프로젝트 폴더 내 모든 파일 버전 관리
# 특정파일만 관리시 ex > git add file_name.py 형식
2. git add .
# Commit이란 파일 및 폴더의 추가/변경 사항들에 대해 기록을 하는 것
3. git commit -m "Your_Comment"
# 자신의 Name과 Repo의 name을 적어준다.
4. git remote add origin https://github.com/Your_Name/Your_Repo_Name.git
# (생략)
5. git pull origin master
#
6. git push -u origin master
# pushig할때 오류 발견시
git push --force origin master
9. github에 가서 잘 upload 되었는지 확인하기~
참고 :
stackoverflow.com/questions/12799719/how-to-upload-a-project-to-github
* 혹시모를 참고자료
ⓐ github 수정파일 update하는 방법
bugloss-chestnut.tistory.com/entry/Github-How-to-upload-modified-file-to-git
ⓑmd image 넣기 & resize
ⓒandroid app icon 만드는방법
bugloss-chestnut.tistory.com/entry/Android-App-Icon-%EC%A0%81%EC%9A%A9%ED%95%98%EA%B8%B0
ⓓgit 연결 제거
bugloss-chestnut.tistory.com/entry/Github-How-to-disconnect-local-git-repo-from-remote
ⓔjupyter notebook chrome으로 실행하기
ⓕgit collaborators 추가 방법
bugloss-chestnut.tistory.com/entry/Github-How-to-add-Git-Collaborator
[Github] How to upload modified file to git(Windows) (0) | 2020.09.22 |
---|---|
[Machine Learning] Multiclass / Multilabel classification (0) | 2020.09.10 |
[Virtual Environments] pip / pyenv / virtualenv / anaconda (0) | 2020.08.29 |
[Pip / conda] pip 와 conda (0) | 2020.08.09 |
[Python] Anaconda 가상환경 생성/삭제하기 (0) | 2020.08.09 |