-
[Git] 기존 폴더Git 2022. 1. 7. 15:51
기존 폴더 push
일반적인 commit
git add .
git commit -m "커밋내용"
git push
중간에 기존 폴더를 github에 올리고 관리하는 방법은 아래와 같다.
New저장소+Commit
기존저장소 + Commit
# github에 repository를 생성한다. # 그후 로컬폴더에서 git를 초기화한다. or repository를 생성 # init 명령어를 사용하여 git의 Local 저장소(Repository)를 생성 git init # 생성된 git-주소 를 remote로 등록한다. git remote add origin <git-주소> ex)git remote add origin https://github.com/dlsenfl3/Reservoom.git # master를 가저온다. git pull origin master # 로컬폴더의 내용을 추가한다. git add . # commit 을 한다. git commit -m "first commit" # github에 올린다. git push -u origin master
https://cjred.net/2020-08-01-local-project-to-github/
저장소 삭제
로컬 저장소 삭제
$ cd [GIT_REPO] $ git checkout main $ rm -rf .git
강제 push
git 저장소 로컬로 가져오기
git clone 주소 ex)git clone https://github.com/dlsenfl3/Abby.git
- 너무 큰 파일 있을경우(동영상 파일) Push 안됨.
personal access token
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
728x90'Git' 카테고리의 다른 글
[Git] Git-VS 연동 (0) 2022.11.29 [Git] git merge branch (0) 2022.11.22 [Git] ssh clone (0) 2022.01.04 댓글