# GD32 **Repository Path**: william_william/GD32 ## Basic Information - **Project Name**: GD32 - **Description**: No description available - **Primary Language**: Unknown - **License**: LGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 8 - **Forks**: 4 - **Created**: 2020-04-28 - **Last Updated**: 2024-04-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 仓库说明 这是我用来保存我在学习GD32过程中编写的一些代码及使用的一些工具 简易的命令行入门教程: Git 全局设置: ```bash git config --global user.name "william" git config --global user.email "472853046@qq.com" ``` 创建 git 仓库: ```bash mkdir GD32 cd GD32 git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/william_william/GD32.git git push -u origin master ``` 同步仓库: ```bash git pull origin master ```