From 18fa480c84b358da8bf50d54057f53591759225f Mon Sep 17 00:00:00 2001 From: Wind Date: Tue, 10 Feb 2026 13:16:39 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A6=AC=EB=88=85=EC=8A=A4=20=EB=AA=85?= =?UTF-8?q?=EB=A0=B9=20=EB=AA=A8=EC=9D=8C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .TemporaryDocument/필요 Linux명령들 모음.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.TemporaryDocument/필요 Linux명령들 모음.md b/.TemporaryDocument/필요 Linux명령들 모음.md index 89d2d25..91636e1 100644 --- a/.TemporaryDocument/필요 Linux명령들 모음.md +++ b/.TemporaryDocument/필요 Linux명령들 모음.md @@ -35,4 +35,19 @@ git add 폴더명 또는 파일명 git commit -m "설명설명설명" git push -u origin main +# 기존 디렉토리에 gitea에서 가져오고 싶을때 +(git remote add origin # 저장소 설정 안되어 있을때만,) +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 <디렉토리명>