Skip to content

Commit d70ac4b

Browse files
committed
Initial
1 parent fc70b3d commit d70ac4b

20 files changed

Lines changed: 318 additions & 18 deletions

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
end_of_line = crlf
9+
files.encoding = "utf8"
10+
indent_size = 4
11+
indent_style = tab
12+
insert_final_newline = true
13+
max_line_length = 80
14+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
* text=auto
3+
4+
## Enforce text mode and CRLF line breaks
5+
*.editorconfig text eol=crlf
6+
*.gitattributes text eol=crlf
7+
*.gitignore text eol=crlf
8+
*.md text eol=crlf
9+
*.txt text eol=crlf

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
#* @Gesugao-san
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# Contributor Covenant Code of Conduct
23

34
## Our Pledge

.github/CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
# CONTRIBUTING
3+
4+
[Back](../README.md)
5+
6+
> Guide to contributing to [foo/bar](https://github.com/foo/bar) repo.
7+
8+
### Table of content
9+
- [CONTRIBUTING](#contributing)
10+
- [Table of content](#table-of-content)
11+
- [Pull Request Process](#pull-request-process)
12+
- [Banned content](#banned-content)
13+
14+
## Pull Request Process
15+
16+
There is no strict process when it comes to merging pull requests. Pull requests will sometimes take a while before they are looked at by a maintainer; the bigger the change, the more time it will take before they are accepted.
17+
18+
Please feel free to:
19+
* fix mistakes through a [Pull Requests (PR is short)](https://github.com/foo/bar/pulls).
20+
21+
## Banned content
22+
23+
Do not add any of the following in a Pull Request or risk getting the PR closed:
24+
25+
* Code which violates GitHub's [terms of service](https://github.com/site/terms).
26+
27+
---

.github/DOWNLOAD.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
# DOWNLOADING
3+
4+
[Back](../README.md)
5+
6+
> Guide to download from [foo/bar](https://github.com/foo/bar) repo.
7+
8+
### Table of content
9+
- [DOWNLOADING](#downloading)
10+
- [Table of content](#table-of-content)
11+
- [Browser](#browser)
12+
- [git bash](#git-bash)
13+
14+
## Browser
15+
16+
Download the source code as a zip by clicking the ZIP button in the code tab of https://github.com/foo/bar (note: this will use a lot of bandwidth if you wish to update and is a lot of hassle if you want to make any changes at all, so it's not recommended)
17+
18+
![Browser download](/.github/static/browser_download.png)
19+
20+
For more info check [official Github guide](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories), please.
21+
22+
## git bash
23+
24+
You can use any Git client to "clone" the repository, downloading a copy to your machine. You can also use Git to "pull", which updates your copy to match recent changes.
25+
26+
```shell
27+
$ git clone https://github.com/foo/bar
28+
```
29+
30+
![Browser download](/.github/static/mintty_download.png)
31+
32+
For more info check [official Github guide](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories), please.
33+
34+
---

.github/TODO.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
# TODO
3+
4+
[Back](../README.md)
5+
6+
> ToDo list.
7+
8+
### Table of content
9+
10+
- [TODO](#todo)
11+
- [Table of content](#table-of-content)
12+
- [ToDo table](#todo-table)
13+
14+
## ToDo table
15+
16+
- [ ] ~~Example entry (not marked as done)~~;
17+
- [x] ~~Example entry (marked as done)~~.

.github/pull_request_template.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
** Changes **
2-
A brief description of the changes
1+
2+
**Changes**
3+
A brief description of the changes.
34

45
1. Did X
56
2. Tested Y
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)