2016年6月17日

摘要: (1) 检查一遍代码改动 $git status (2) 将工作目录中的代码提交到暂存区 $ git add filename git add -A (3) 提交代码到本地库中 $ git commit -m "comment" (4) 提交修改到服务器中 (4.1) 将服务器中最新代码取到本地临时 阅读全文

posted @ 2016-06-17 15:16 Fhj888 阅读(396) 评论(0) 推荐(0) 编辑

摘要: 查状态 查看状态:git status 暂存 添加至暂存区:git add <file> commit commit暂存区内容:git commit -m “描述” commit 所有修改的文件到暂存区: git commit -am “描述” PUSH PUSH代码: git push 根 当前分 阅读全文

posted @ 2016-06-17 15:14 Fhj888 阅读(136) 评论(0) 推荐(0) 编辑