깃허브에 폴더 업로드 하는 법, restore

Jake·2022년 1월 7일
0

Aiffel Fundamental

목록 보기
8/23

폴더 업로드

  1. git에 프로젝트 레파지토리 생성
  2. 아래 명령어 입력
$ git status 
$ git add 원하는 폴더이름 // 폴더를 스테이지한다 
$ git commit -m "메모" // 폴더를 커밋한다 

$ git remote -v 
or
$ git remote add origin https://github.com/och9854/레파지토리주소 

$ git push origin master

restore

  • restore --staged: changes to be committed를 올려준다.
    $ git restore --staged test.txt
profile
Nice to meet you. I would really appreciate your feedbacks. Thank you

0개의 댓글