# LearnGit **Repository Path**: software-engineering-yss/learn-git ## Basic Information - **Project Name**: LearnGit - **Description**: 学习 git - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-21 - **Last Updated**: 2021-08-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 总结 1. 安装了 git 和 SourceTree 1. 学习了写 markdown 文件的基本语法。 1. 学习了使用 git 提交,推送,拉取,克隆 四个操作。 1. 学习了如何使用 git 历史还原文件版本。 ``` # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 **加粗** *斜体* ***加粗斜体*** | 表头1 | 表头2 | | --- | --- | | 列1 | 列2 | ## 超链接 [百度](http://www.baidu.com) ## 图片插入 ![](https://img2.baidu.com/it/u=2102736929,2417598652&fm=26&fmt=auto&gp=0.jpg) 这里是行内代码`int` ```python def test(a,b): """ docstring """ return a+b ``` ```