本地搭建wamp 输入http://127.0.0.1访问正常,当输入http://localhost/ apache出现You don't have permission to access/on this server.的提示 解决方法如下: 找到httpd.conf,用记事本打开httpd.conf,然后将 <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all <…
git pull“No remote repository specified”解决方法 学习了:http://www.paopaoche.net/jiaocheng/77226.html 修改“.git”文件夹里面的“config”文件的url就可以了: [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunico…
问题背景: 新项目还在开发阶段,没有正式对外发布,所以开发同事合并代码到develop上(或者其他名称分支上),而不是到master分支上 通过git拉取代码的时候,默认拉取的是master分支,如下图: 拉取指定分支代码解决方案: 以拉取develop分支的代码为例, 要拉取其余分支代码类似操作 1.使用git命令拉取 命令:git clone -b develop XXX  其中develop就是分支的名称 2.使用TortoiseGit工具拉取 git从指定分支更新代码到本地 git pu…
一.使用git在本地创建一个项目的过程,Git 上传本地文件到github $ makdir ~/hello-world //创建一个项目hello-world $ cd ~/hello-world //打开这个项目 $ git init //初始化$ git add . //提交所有文件$ touch README $ git add README //更新README文件 $ git commit -m ‘first commit’ //提交更新,并注释信息“first commit” $…
在git项目下执行git difftool,出现如下报错 /Library/Developer/CommandLineTools/usr/libexec/git-core/mergetools/diffmerge: line : diffmerge: command not found 解决方法 ln -s /Applications/DiffMerge.app/Contents/Resources/diffmerge.sh /usr/local/bin/diffmerge…
我vs今天出现一点比较诡异的情况,莫名奇妙就不能自动生成我拖的控件的后端代码了(****.aspx.designer.cs) 我在网上找了下,找到一个解决方法,这里把解决方法贴下来. 网上解决方法的出处:http://www.cnblogs.com/beer/archive/2010/04/26/1720946.html 解决方法(需要先关闭所有的vs程序): 重置Visual Studio可以解决此问题,方法是从开始->Microsoft Visual Studio 2008->Visual…
在配置Linux的 Apache服务时,经常会遇到http403错误,我今天配置测试时也出现了,最后解决了,总结了一下.http 403错误是拒绝访问的意思,有很多原因的.还有,这些问题在win平台的Apache里一样会发生!我按照经验总结的主要有以下4种原因! 本人测试的环境 是:Scientific Linux 5.3(与RHEL和CentOS百分百兼容!),其它版本的Linux应该通用,没测试. 1. 访问的文档权限不够.要755以上权限.解决方法:用命令chmod 755 /var/ww…
新建一个SQL Server Database Project,提示: Unable to open Database project This version of SQL Server Data Tools is not compatible with the database runtime components installed on this computer. 老外说因为安装了Microsoft SQL Server 2012 SP1导致,而我并没有安装它且两个月前创建项目是成功的…
由于升级了git版本,git clone 的时候报了如下的错误 fatal: unable to access 'https://github.com/open-falcon/falcon-plus.git/': SSL connect error 百度了好久,试了好多方法,最后google到了解决方法,特记录下 解决方法 yum update -y nss curl libcurl…
在linux系统中安装mysql服务器详细步骤并解决ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passw 1. 提示 /tmp/mysql.sock 丢失 service mysql start 提示 /tmp/mysql.sock 丢失,则重启服务器,会自动建立 /tmp/mysql.sock 文件 2. 提示 ERROR 1045 (28000): Access denied for user '…