본문 바로가기
유용한 기타 자료/깃허브 업로드 방법

git hub(깃허브) 업로드 방법

by 분석친구 2021. 12. 24.

1. https://github.com/ 접속

2. repositories 에서 new 클릭

3. respository name 설정(test4) & public 또는 private 설정 & Create repository 클릭

4. cmd창 열기 

5. cmd 내에서 git typing 

6. git config --global user.name yujinyi717

7. git config --global user.email wlsdl2664@gmail.com

8. cd C:\education (경로 이동-> 파일을 업로드할 폴더 설정) 

9. git clone https://github.com/yujinyi717/test4.git ->3번 페이지에 있는 것 작성 

10. cd test4 // cd C:\education\Coding_Study\Programmers\Lv_1

11. 업로드를 원하는 파일 옮기기

12. git add hw2.ipynb // git add *

13. git commit -m "Add Python File [hw2.ipynb]" //  git commit -m "Add Python File * "

14. git push

* 추가

private -> public 으로 바꾸려면, setting -> change repository visibility 클릭

 

# 의문점 

1. 내용을 수정하려면? 

2. pdf 파일도 업로드 가능한가? 

 

https://byul91oh.tistory.com/231

 

[git] 에러 | ! [rejected] main -> main (fetch first)

해석 상황 작업을 마친뒤 로컬에서 원격저장소로 git push를 했는데 ! [rejected] main -> main (fetch first) 에러가 발생했다. 원인 해당 에러는 원격저장소와 현재 작업중인 로컬저장소가 동기화되지..

byul91oh.tistory.com

- readme 등을 수정한 뒤에, 동기화를 위해 

git pull --rebase origin main 

댓글