开发工具 开发工具——Git 开发工具专题之Git Git学习记录 一、Git基本命令 1. 设置用户名和邮箱 1 2 3 git config --global user.name "coucou" git config --global user.email "coucou" 2. 初始化和查看日志 1 2 git init git log 3. 添加文件和提交文件 1 2 git add test.txt // 表示文件放到暂存区 git commit -m "注释" test.txt // -m 表注释 4. 查看工作区和暂存区状态 1 git status 5.删除文件 1 2 3 rm test.txt git add test.txt git commit -m "删除test.txt" test.txt 二、Git分支命令 1. 查看、创建、切换分支 1 2 3 git branch branch01 // 创建分支 git branch -v // 查看分支 git branch branch01 // 切换分支 三、GitHub相关 1. 为URL起别名以及查看别名 1 2 git remote add origin [url] git remote -v 2. 推送操作和克隆操作 1 2 git push [url] master // master表示要推送的分支 git clone [url] 3. 远程库修改的拉取 1 git pull [url] master 四、IDEA使用Git 五、实例 1 2 3 4 5 git remote add cs_notes https://github.com/CyC2018/CS-Notes.git // 起别名 git pull cs_notes master // 拉项目 git add . // 添加到暂存区 git commit -m "modify test" // 提交给git管理 git push cs_notes master // 提交到GitHub