# demoproject **Repository Path**: cliheng/demoproject ## Basic Information - **Project Name**: demoproject - **Description**: 纯粹用于演示git使用 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-12-03 - **Last Updated**: 2021-12-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git版本演示操作说明 ### 进入需要版本管理目录 git init ### 一次性注册用户身份 git config --global user.email '自己email' git config --global user.name '用户名' ### 添加到版本库1 git add . ### 提交到版本库2 git commit -m '提交描述' ### 查看日志 git log ### 查看当前目录文件状态 git status