
Git/SVN
sfshine
这个作者很懒,什么都没留下…
展开
-
[svn错误解决]svn: Server sent unexpected return value (405 Me
svn ci xxxx/ -m "xxxxxx"报错:svn: Commit failed (details follow):svn: Server sent unexpected return value (405 Method Not Allowed) in response to MKCOL request for'xxxxxx'解决方法之一:转载 2014-06-25 09:48:54 · 8942 阅读 · 0 评论 -
git更新文件冲突 Please, commit your changes or stash th
如果系统中有一些配置文件在服务器上做了配置修改,然后后续开发又新添加一些配置项的时候,在发布这个配置文件的时候,会发生代码冲突:error: Your local changes to the following files would be overwritten by merge: protected/config/main.phpPlease, comm转载 2014-06-19 15:04:07 · 1065 阅读 · 0 评论 -
git签出远程分支问题解决
使用命令[plain] view plaincopy$ git checkout -b develop origin/develop 或[plain] view plaincopy$ git checkout --track origin/develop 签出远程转载 2014-07-11 13:49:37 · 1706 阅读 · 0 评论 -
项目经理必知的75条建议
开发75条: 1. 你们的项目组使用源代码管理工具了么? 应该用。VSS、CVS、PVCS、ClearCase、CCC/Harvest、FireFly都可以。我的选择是VSS。 2. 你们的项目组使用缺陷管理系统了么?应该用。ClearQuest太复杂,我的推荐是BugZilla。 3. 你们的测试组还在用Word写测试用例么?不要用Wor转载 2014-08-06 21:51:07 · 1021 阅读 · 0 评论 -
Git 打Tag 并提交到服务器
引用http://git-scm.com/book/zh/Git-%E5%9F%BA%E7%A1%80-%E6%89%93%E6%A0%87%E7%AD%BE原创 2014-09-19 09:48:36 · 1316 阅读 · 0 评论 -
Git 初始化 源码库命令
简易的命令行入门教程: Git 全局设置: git config --global user.name "SuShine" git config --global user.email "ssfshi转载 2014-11-17 08:53:47 · 913 阅读 · 0 评论 -
Git , TortoiseGit 操作记住密码
创建存储用户名密码的文件 在home文件夹,一般是 C:\Documents and Settings\Administrator 下建立文件 .git-credentials (windows下不允许直接创建以.开头的文件,所以有一个小技巧:先创建一个文件名叫 )git-credentials 然后进入 git bash 使用命令: mv git-credentials .git原创 2014-07-11 10:09:04 · 1947 阅读 · 0 评论