List of commits:
Subject Hash Author Date (UTC)
相册toString修改 62b90deefca426d5b2311ede0a22638b5e8476fd Darren 2022-01-26 02:11:32
请求图片 7927e446237438a87646b872fb33de2d5442ef37 Darren 2022-01-26 02:10:27
引入Apache Commons IO v2.11.0 765f9b317909154a332896f60b4d7a9397786d1a Darren 2022-01-25 07:46:51
spring devtools配置 57ea9da33488a86c5b45960fe0d2007445019fbf Darren 2022-01-25 07:03:00
相册 711f5793832b739df993e593852411342a448670 Darren 2022-01-20 14:54:03
配置数据库 cb660a7086abc552cf99603a66cd2b0cae821ec8 Darren 2022-01-20 14:52:46
引入mybatis-plus-boot-starter@3.5.0 5de6337c72596d94847273e1f5c1eac72f615a62 Darren 2022-01-20 14:52:28
init 987817948db6829151065d2f8a7873b5ddb25773 Darren 2022-01-17 09:15:49
Commit 62b90deefca426d5b2311ede0a22638b5e8476fd - 相册toString修改
Author: Darren
Author date (UTC): 2022-01-26 02:11
Committer name: Darren
Committer date (UTC): 2022-01-26 02:11
Parent(s): 7927e446237438a87646b872fb33de2d5442ef37
Signing key:
Tree: f782fce610c59a552dcc87e60a881e9e5eadc5be
File Lines added Lines deleted
src/main/java/com/darren/tommserver/entity/Album.java 6 10
File src/main/java/com/darren/tommserver/entity/Album.java changed (mode: 100644) (index 9ef33d4..8db7893)
... ... public class Album implements Serializable {
40 40
41 41 @Override @Override
42 42 public String toString() { public String toString() {
43 StringBuilder sb = new StringBuilder();
44 sb.append(getClass().getSimpleName());
45 sb.append(" [");
46 sb.append("Hash = ").append(hashCode());
47 sb.append(", id=").append(id);
48 sb.append(", name=").append(name);
49 sb.append(", url=").append(url);
50 sb.append(", serialVersionUID=").append(serialVersionUID);
51 sb.append("]");
52 return sb.toString();
43 return getClass().getSimpleName() +
44 " [" +
45 ", id=" + id +
46 ", name=" + name +
47 ", url=" + url +
48 "]";
53 49 } }
54 50 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/darren/ToMmServer

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/darren/ToMmServer

Clone this repository using git:
git clone git://git.rocketgit.com/user/darren/ToMmServer

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main