You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 5
Next »
SanseLG@SanseLG MINGW64 /c/PDS/study/demo
$ git init
Initialized empty Git repository in C:/PDS/study/demo/.git/
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$ git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitignore
build.gradle
gradle/
gradlew
gradlew.bat
settings.gradle
src/
nothing added to commit but untracked files present (use "git add" to track)
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$
$ git add .
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in build.gradle.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in gradle/wrapper/gradle-wrapper.properties.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in gradlew.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in settings.gradle.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in src/main/java/com/example/demo/DemoApplication.java.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in src/main/resources/application.properties.
The file will have its original line endings in your working directory.
warning: LF will be replaced by CRLF in src/test/java/com/example/demo/DemoApplicationTests.java.
The file will have its original line endings in your working directory.
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$ git commit -m "init spring-reactor-redis"
[master (root-commit) a782228] init spring-reactor-redis
10 files changed, 348 insertions(+)
create mode 100644 .gitignore
create mode 100644 build.gradle
create mode 100644 gradle/wrapper/gradle-wrapper.jar
create mode 100644 gradle/wrapper/gradle-wrapper.properties
create mode 100644 gradlew
create mode 100644 gradlew.bat
create mode 100644 settings.gradle
create mode 100644 src/main/java/com/example/demo/DemoApplication.java
create mode 100644 src/main/resources/application.properties
create mode 100644 src/test/java/com/example/demo/DemoApplicationTests.java
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$ git remote add origin https://github.com/sanse-devops/spring-reactor-redis.git
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$ git remote -v
origin https://github.com/sanse-devops/spring-reactor-redis.git (fetch)
origin https://github.com/sanse-devops/spring-reactor-redis.git (push)
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)
$ git push origin master --force
fatal: HttpRequestException encountered.
▒▒ ▒▒û▒▒ ▒▒▒▒▒▒ ▒▒▒▒ ▒▒▒▒▒▒ ▒▒▒߽▒▒ϴ▒.
Username for 'https://github.com': sooabia@gmail.com
Counting objects: 26, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (16/16), done.
Writing objects: 100% (26/26), 53.60 KiB | 1.79 MiB/s, done.
Total 26 (delta 0), reused 0 (delta 0)
To https://github.com/sanse-devops/spring-reactor-redis.git
+ 99c3886...a782228 master -> master (forced update)
SanseLG@SanseLG MINGW64 /c/PDS/study/demo (master)