리눅스 명령 모음 추가

This commit is contained in:
Wind
2026-02-10 13:16:39 +09:00
parent 1ba28dbce6
commit 18fa480c84

View File

@@ -35,4 +35,19 @@ git add 폴더명 또는 파일명
git commit -m "설명설명설명"
git push -u origin main
# 기존 디렉토리에 gitea에서 가져오고 싶을때
(git remote add origin <URL> # 저장소 설정 안되어 있을때만,)
git pull origin main
# 새로운 디렉토리에 gitea 저장소에서 pull 하는 방법
mkdir myproject
cd myproject
gitea 접속해서 해당 저장소의 Clone URL확인
http://192.168.0.250:3000/windpacer/AssetPilot.git
git clone http://192.168.0.250:3000/windpacer/AssetPilot.git .
# 마지막 . 은 현재 디렉토리에 바로 풀어 넣겠다는 의미.
# 디렉토리명 지정하고 싶으면 git clone <URL> <디렉토리명>