30down votefavorite 16 git 1.7.12 I want to mark all files below a given directory as assume-unchanged. 1) git update-index --assume-unchaged dir/ gives "Ignoring path." 2) git update-index --assume-unchaged dir/* quickly fails because it will e…
在window下已经安装了git的环境 1.建立本地仓库 mkdir   test     #建立test目录 cd   test        #进入目录 git  init           #创建好了本地git仓库,会发现在test目录中多了一个.git目录,并且这个目录是隐藏的 示例: $ git init Initialized empty Git repository in F:/git-repo/test/.git/ init前 init后 2.提交文件到中转站和仓库(add和c…
1. Git must be installed, Sublime plugin "Git" only connects Sublime with Git. Download URL https://git-scm.com/downloads 2. Enable Sublime 3 Package Control, which is a sublime package manage tool Ctrl+Shift+P Install Package Control 3. Install…
git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompatible or unsupported protocol version.” 解决办法: yum update -y nss curl libcurl 问题解决了.…
问题: Azure Sql 在插入数据是出现“Msg 40054, Level 16, State 1, Line 2  Tables without a clustered index are not supported in this version of SQL Server. Please create a clustered index and try again”. 原因: Azure Sql在插入数据是有聚集索引要求:Microsoft Azure SQL Database 不支持…
如何克隆远程版本库到本地 git clone URL 如何用命令将本地项目上传到git 1.(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库 (注意: cd C:/Users/Dell/workspace/GitTestProject/src(运行命令的时候,路径要把正常的Windows路径的斜杠改方向. 可以把git bash加入到右键,这样方便很多) git init 2.把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小…
echo off for /d %%i in (*) do ( echo %%i cd %%i git fetch --all cd .. ) 判断子目录是否有.git文件夹 echo off for /d %%i in (*) do ( cd %%i IF EXIST .git ( echo %%i git fetch --all echo. ) cd .. ) 分别统计当前目录下的每一个子目录所包含的文件夹个数 @echo off setlocal EnableDelayedExpansio…
ThinkPHP 3.2,配置 'URL_MODEL'=>2.APP_DEBUG设为false,U函数生成的URL的index.php不能去掉,只有将APP_DEBUG改成true,才能去掉index.php,求解~~ 这是个thinkphp3.2的一个bug吗…
基于多处备份的想法,确保自己的代码不丢失.或者是代码的git本身搭建在自己公司的服务上,而你为了保险起见,想把项目同时放在码云或者github上面. 这样,你就需要让一个项目同时备份在两个云端,这样即使公司的服务器上面的代码丢了,或者公司服务器把你的名单除名了,你仍然在码云或者github上面存有你的代码. 那么,怎么实现这个想法呢?请看如下步骤: 前提: 1.假设你现在在gitLab上面新建了一个git地址A(里面已经有项目内容) git@git.taotiangou.net:teamemor…
Mysql update in报错 解决方案: [Err] 1093 - You can't specify target table 'company_info' for update in FROM clause 意思是不能在同一语句中更新select出的同一张表元组的属性值 解决方法:将select出的结果通过中间表再select一遍即可. 错误sql: update company_info set email = 'ttt@163.com' ) 修改后可执行的sql: update c…