1-1. Git Repo 복사하여 Local에 가져오기
git clone https://github.com/{User_Name}/{Repo_Name}.git
1-2. Local에서 Git 시작하기
git init
2. Local Repo에 추가 ( 임시저장 )
git add README.md
git add .
3. Local Repo에 Commit (저장)
git commit -m "first commit"
4. Remote Git 경로 저장
git remote add origin https://github.com/{User_Name}/{Repo_Name}.git
4-1. Remote 저장정보 확인 ( ※작성중 )
cd ./git
5. Git Push
git push -u origin master
'Devops > et cetera' 카테고리의 다른 글
Eclipse 단축키 정리 (4) | 2021.04.16 |
---|