You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use github for our codebase. You can start by reading [How To Pull Request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests).
4
+
We use GitHub for our codebase. You can start by reading [How To Pull Request](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests).
5
5
6
6
## Branch Organization
7
7
We use [git-flow](https://nvie.com/posts/a-successful-git-branching-model/) as our branch organization, as known as [FDD](https://en.wikipedia.org/wiki/Feature-driven_development)
8
8
9
9
## Bugs
10
10
### 1. How to Find Known Issues
11
-
We are using [Github Issues](https://github.com/cloudwego/kitex/issues) for our public bugs. We keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new task, try to make sure your problem doesn’t already exist.
11
+
We are using [Github Issues](https://github.com/cloudwego/{project_name}/issues) for our public bugs. We keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new task, try to make sure your problem doesn’t already exist.
12
12
13
13
### 2. Reporting New Issues
14
-
Providing a reduced test code is a recommended way for reporting issues. Then can placed in:
14
+
Providing a reduced test code is a recommended way for reporting issues. Then can place in:
15
15
- Just in issues
16
16
-[Golang Playground](https://play.golang.org/)
17
17
@@ -23,9 +23,9 @@ Please do not report the safe disclosure of bugs to public issues. Contact us by
23
23
24
24
## Submit a Pull Request
25
25
Before you submit your Pull Request (PR) consider the following guidelines:
26
-
1. Search [GitHub](https://github.com/cloudwego/kitex/pulls) for an open or closed PR that relates to your submission. You don't want to duplicate existing efforts.
26
+
1. Search [GitHub](https://github.com/cloudwego/{project_name}/pulls) for an open or closed PR that relates to your submission. You don't want to duplicate existing efforts.
27
27
2. Be sure that an issue describes the problem you're fixing, or documents the design for the feature you'd like to add. Discussing the design upfront helps to ensure that we're ready to accept your work.
28
-
3.[Fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) the cloudwego/kitex repo.
28
+
3.[Fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) the cloudwego {project_name} repo.
29
29
4. In your forked repository, make your changes in a new git branch:
30
30
```
31
31
git checkout -b my-fix-branch develop
@@ -38,18 +38,14 @@ Before you submit your Pull Request (PR) consider the following guidelines:
38
38
```
39
39
git push origin my-fix-branch
40
40
```
41
-
9. In GitHub, send a pull request to `kitex:develop`
41
+
9. In GitHub, send a pull request to `{project_name}:develop`
42
42
43
43
## Contribution Prerequisites
44
44
- Our development environment keeps up with [Go Official](https://golang.org/project/).
45
45
- You need fully checking with lint tools before submit your pull request. [gofmt](https://golang.org/pkg/cmd/gofmt/) and [golangci-lint](https://github.com/golangci/golangci-lint)
46
-
- You are familiar with [Github](https://github.com)
46
+
- You are familiar with [GitHub](https://github.com)
47
47
- Maybe you need familiar with [Actions](https://github.com/features/actions)(our default workflow tool).
48
48
49
49
## Code Style Guides
50
-
Also see [Pingcap General advice](https://pingcap.github.io/style-guide/general.html).
0 commit comments