# testgit
**Repository Path**: hgp/testgit
## Basic Information
- **Project Name**: testgit
- **Description**: 学习git
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 1
- **Created**: 2014-06-22
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
#testgit
我是大标题
========
我是中标题
-------
#一级标题
##二级标题
###三级标题
####四级标题
#####五级标题
这是一段普通的文本,
直接回车不能换行,
要使用\
单行文本
多行文本
多行文本
多行文本
我要`高亮`
[我是百度](http://www.baidu.com "go to baidu")

####图片链接
[![baidu]](http://www.baidu.com/)
[baidu]:http://www.baidu.com/img/bdlogo.gif "go to baidu"
*前面加圆点
*一级圆点
*二级圆点
*三级圆点
####缩进
>中国
>>广东省
>>>广州市
>>>>白云区
####代码块
```java
public static void main(String[] args) {
System.out.println("hello world");
}
```
```javascript
function hello() {
alert("hello js");
}
```