摘要: 今天提交代码时,在一次提交,莫名其妙没成功后,再次用git commit -a命令时,出现以下错误,无论是用git还是TortoiseGit都会出现以下这个问题。。$ git commit -afatal: Unable to create 'e:/git/Android/XXXXXX/.git/index.lock': File exists.If no other git process is currently running, this probably means agit process crashed in this repository earlier. Mak 阅读全文
posted @ 2013-05-08 19:23 ConquerMobileApp 阅读(26131) 评论(1) 推荐(0) 编辑
摘要: 1、Git 快速教程及命令流程:取代码 → 每次工作前更新代码到最新版本 → 修改代码 → 提交代码到服务器1. 取代码及修改全局设置a. 设置用户名与邮箱git config --global user.name "My Name"git config --global user.email "my@email.com"b. 从已有的git库中提取代码git clone git@server:app .git myrepo2. 每次更改代码的操作a. 更新本地代码到最新版本(需要merge才能合到本地代码中)git fetchb. 合并更新后的代码到本 阅读全文
posted @ 2013-05-08 19:08 ConquerMobileApp 阅读(6784) 评论(0) 推荐(0) 编辑