gtab8 2 commit
parent
fa5ff48449
commit
dd64eecee5
|
@ -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": [],
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
||||
```
|
Loading…
Reference in New Issue