728x90
폴더 업로드
- git에 프로젝트 레파지토리 생성
- 아래 명령어 입력
$ 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
728x90
'Computer Science > AI Fundamental' 카테고리의 다른 글
[F-12] 사이킷런으로 구현해보는 머신러닝 (0) | 2022.02.21 |
---|---|
머신러닝 기본 (0) | 2022.02.21 |
그래프 그리기 (0) | 2022.02.21 |
간단한 그래프 그리기 (0) | 2022.02.21 |
Jupyter Notebook, Markdown (0) | 2022.02.21 |