# text **Repository Path**: CyberRing/robop2 ## Basic Information - **Project Name**: text - **Description**: No description available - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Git is free software; Git is a distributed version control system; "git add " to save one file for working Directory to stage "git commit -m "Your NOTE" " to save files from stage to HEAD "git commit -am "Your NOTE" " to save files from WD to HEAD "git status" to see those files changed working Directory to stage and stage to HEAD. "git diff" to see details of change; "git log" to see each commit details; "git reset " Version back to commit id; "git reflog" to see each commit id ever change; "git restore " can help you delete "stupid boss"(last changes without add) in working Directory stupid boss again? "git restore --staged " delete the changes in stage "git checkout -- " once you delete a file in Working Directory and you do not want to delete it, you can use this command to get lastest version from Repository gitee 简单入门命令行 git remote add origin https://gitee.com/CyberRing/RobotPilot.git git push -u origin master 新工程发不上去时,直接强制push就算了 $ git push -u origin master -f