2022.11.17 Git 세팅
git - Springboot-JPA-Blog 레파지토리 생성
C:\workspace\blog - git bash
git init
git add .
git commit -m "환경세팅완료 v1"
git remote add origin 주소
git push origin master
jwons@DESKTOP-P2E2D4J MINGW64 /c/workspace/blog
$ git init
Initialized empty Git repository in C:/workspace/blog/.git/
jwons@DESKTOP-P2E2D4J MINGW64 /c/workspace/blog (master)
$ git add .
warning: in the working copy of '.gitignore', LF will be replaced by CRLF the next time Git touches it
...
jwons@DESKTOP-P2E2D4J MINGW64 /c/workspace/blog (master)
$ git commit -m "환경세팅 완료"
[master (root-commit) 320eba2] 환경세팅 완료
10 files changed, 697 insertions(+)
create mode 100644 .gitignore
create mode 100644 .mvn/wrapper/maven-wrapper.jar
create mode 100644 .mvn/wrapper/maven-wrapper.properties
create mode 100644 mvnw
create mode 100644 mvnw.cmd
create mode 100644 pom.xml
create mode 100644 src/main/java/com/cos/blog/BlogApplication.java
create mode 100644 src/main/java/com/cos/blog/test/BlogControllerTest.java
create mode 100644 src/main/resources/application.yml
create mode 100644 src/test/java/com/cos/blog/BlogApplicationTests.java
jwons@DESKTOP-P2E2D4J MINGW64 /c/workspace/blog (master)
$ git remote add origin https://github.com/jwons44/Springboot-JPA-Blog.git
jwons@DESKTOP-P2E2D4J MINGW64 /c/workspace/blog (master)
$ git push origin master
Enumerating objects: 27, done.
Counting objects: 100% (27/27), done.
Delta compression using up to 8 threads
Compressing objects: 100% (18/18), done.
Writing objects: 100% (27/27), 59.71 KiB | 2.60 MiB/s, done.
Total 27 (delta 0), reused 0 (delta 0), pack-reused 0
To https://github.com/jwons44/Springboot-JPA-Blog.git
* [new branch] master -> master
jwons@DESKTOP-P2E2D4J MINGW64 /c/workspace/blog (master)
$ git status
On branch master
nothing to commit, working tree clean