반응형
[Git NAS Flutter] VS Code Git NAS Settins
1. 로컬 프로젝트 생성 및 리포지토리 만들기
* 경로명등 네이밍은 각자 상황에 맞게
flutter create git_test
cd git_test
git init 는 Vs Code에서 Initialize Repository 버튼 클릭으로 수행.
2. 원격(NAS) 리포지토리 bare init
Vs Code내에서 새 터미널 열기
ssh charles@192.168.1.2 ( ssh 설정은 미리 해뒀음 )
cd repos
git init --bare git_test.git
3. Vs Code Source Control 에서 Commit & Add Remote
Vs Code로 돌아와서 Source Control 에서 Commit 버튼으로 커밋
[...] 버튼 클릭 > Remote > Add Remote... 클릭
상단에 원격 리포지토리 URL 입력: ssh://charles@192.168.1.2/volume1/homes/charles/repos/git_test.git
원격 리포지토리 이름 설정(닉네임 같은 거): git_test_my_nas
4. Commit & Sync(Pull & Push)
Publish Branch 버튼 클릭
반응형
끗
반응형