# GitTraining **Repository Path**: Ruiyu_Gao/git-training ## Basic Information - **Project Name**: GitTraining - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 22 - **Created**: 2024-01-05 - **Last Updated**: 2024-01-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git 基本原理 ## git工作流程 - WorkSpace - 工作区 - Index -暂存区 - Repository - 仓库区 - Remote -远程仓库 # 分支 ## 核心功能 1. 版本管理 1. git add 2. git commit 3. git checkout 1. 对分支 2. 对节点 2.协作开发 1. git push 2. git clone 3. git pull #模板代码框架 ```c int is_even(int n){ // There's a mistake here. return n %2==0; } int main(){ is_even(5) == 0; pow(3, 5) == 243; return 0; } ```