diff --git a/Recognition/.obsidian/plugins/recent-files-obsidian/data.json b/Recognition/.obsidian/plugins/recent-files-obsidian/data.json index 9d25151..c1c56b4 100644 --- a/Recognition/.obsidian/plugins/recent-files-obsidian/data.json +++ b/Recognition/.obsidian/plugins/recent-files-obsidian/data.json @@ -1,5 +1,13 @@ { "recentFiles": [ + { + "basename": "CLI에서 Git 사용", + "path": "Tools/GitHub/CLI에서 Git 사용.md" + }, + { + "basename": "Ubuntu Gitlab 설치", + "path": "Tools/GitHub/Ubuntu Gitlab 설치.md" + }, { "basename": "Spring 확장팩 설치", "path": "Tools/VSCode_Server/Spring 확장팩 설치.md" @@ -191,14 +199,6 @@ { "basename": "표준이동경로 관련 임시테이블", "path": "Work Related/프로젝트/스마트계류장/1.데이터베이스/표준이동경로 관련 임시테이블.md" - }, - { - "basename": "실 데이터 검증", - "path": "Work Related/프로젝트/스마트계류장/1.데이터베이스/실 데이터 검증.md" - }, - { - "basename": "외부데이터 연계 등", - "path": "Work Related/프로젝트/스마트계류장/9.기타/외부데이터 연계 등.md" } ], "omittedPaths": [], diff --git a/Recognition/.obsidian/workspace-mobile.json b/Recognition/.obsidian/workspace-mobile.json index 67a255a..1cfdac4 100644 --- a/Recognition/.obsidian/workspace-mobile.json +++ b/Recognition/.obsidian/workspace-mobile.json @@ -13,7 +13,7 @@ "state": { "type": "markdown", "state": { - "file": "Tools/VSCode_Server/Spring 확장팩 설치.md", + "file": "Tools/GitHub/CLI에서 Git 사용.md", "mode": "source", "backlinks": true, "source": false @@ -94,7 +94,7 @@ "state": { "type": "backlink", "state": { - "file": "Tools/VSCode_Server/Spring 확장팩 설치.md", + "file": "Tools/GitHub/CLI에서 Git 사용.md", "collapseAll": false, "extraContext": false, "sortOrder": "alphabetical", @@ -111,7 +111,7 @@ "state": { "type": "outgoing-link", "state": { - "file": "Tools/VSCode_Server/Spring 확장팩 설치.md", + "file": "Tools/GitHub/CLI에서 Git 사용.md", "linksCollapsed": false, "unlinkedCollapsed": true } @@ -123,7 +123,7 @@ "state": { "type": "outline", "state": { - "file": "Tools/VSCode_Server/Spring 확장팩 설치.md" + "file": "Tools/GitHub/CLI에서 Git 사용.md" } } }, @@ -150,6 +150,9 @@ }, "active": "28ca55a285c19b9f", "lastOpenFiles": [ + "Tools/GitHub/Ubuntu Gitlab 설치.md", + "Tools/GitHub/CLI에서 Git 사용.md", + "Tools/VSCode_Server/Spring 확장팩 설치.md", "Tools/VSCode_Server/Ubuntu에 설치.md", "Programing/MariaDB/정렬된 자료에서 빈칸채우기.md", "Programing/Oracle/LAG, LEAD 함수 (위아래 행간 컬럼 비교).md", diff --git a/Recognition/Tools/GitHub/CLI에서 Git 사용.md b/Recognition/Tools/GitHub/CLI에서 Git 사용.md new file mode 100644 index 0000000..d804abd --- /dev/null +++ b/Recognition/Tools/GitHub/CLI에서 Git 사용.md @@ -0,0 +1,17 @@ +``` shell + +# clone +git clone # 저장소 경로 + + +# push +git config --global user.name "MonHun" +git config --global user.email "mh@monhun.com" + +git pull origin main # 브런치 이름 (main, master) +git add . +git commit -m "커밋 메시지" +git push origin main # 브런치 이름 (main, master) + + +``` \ No newline at end of file