摘要: 1. 创建标签; $git tag name 2. 查看所有标签; $git tag 3.给提交过的版本打标签; $git tag name commid_id 4.git show tagname; 查看标签信息; 5.创建带有说明的标签; $git tag -a name -m "说明文字" * 阅读全文
posted @ 2017-12-24 23:26 web男 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1.查看远程仓库; $git remote $git remote -v 更详细的信息; $ git remote -v $ git remote -v origin git@github.com:zccxy/Repository.git (fetch) 抓取 origin git@github.c 阅读全文
posted @ 2017-12-24 23:02 web男 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1. 创建分支; git branch name 2. 查看分支; git branch 3. 切换分支; git checkout name 4.创建并切换分支; git checkout -b name 5.合并分支; git merge name 6.删除分支; git branch -d n 阅读全文
posted @ 2017-12-23 12:05 web男 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1.创建 ssh key; $ssh-keygen -t rsa -C "youremail@example.com" youremail@example.com为设置的邮箱 不用设置密码 一直回车; id-rsa 是私钥;id-rsa.pub 是公钥; 2. 登录GitHub; 打开Account 阅读全文
posted @ 2017-12-23 00:09 web男 阅读(862) 评论(0) 推荐(0) 编辑
摘要: windos平台 1.安装GitHub; 下载GitHub 链接: https://pan.baidu.com/s/1qXCW4MS 密码: 2qpk; 运行git-bash.exe; 2. 设置用户名;邮箱; $git config --global user.name "yourName" $g 阅读全文
posted @ 2017-12-22 22:46 web男 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 帝国CMS系统设置中的“附件地址”设置是不生效的,无论设置成什么都还是在 d/file/ 下,下面牛教程介绍手动修改附件存放地址的方法。 一:先在系统设置中将“附件地址”一项修改为自己想要的地址,这里以 /upload/ 为例。 二:修改 /e/class/connect.php 文件,将文件中所有 阅读全文
posted @ 2017-11-18 10:47 web男 阅读(5852) 评论(0) 推荐(0) 编辑
摘要: 显示字段就是你发布时看到的选项内容, 值字段名 就是实际写入表的内容 阅读全文
posted @ 2017-09-01 11:50 web男 阅读(1186) 评论(0) 推荐(0) 编辑
摘要: WAMPServer多站点配置 1.打开目录 :\wamp\bin\apache\apache2.4.9\conf\extra,找到 httpd-vhosts.conf(虚拟目录文件夹)文件,打开,复制如下内容: <VirtualHost *:80> DocumentRoot "c:/demo/te 阅读全文
posted @ 2017-08-30 18:39 web男 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 提示把Apache的配置文件httpd.conf中的Include conf/extra/httpd-vhosts.conf改为#Include conf/extra/httpd-vhosts.conf,顿时恍然大悟,肯定是因为之前我配置了“wampserver的本地虚拟服务器环境”,而现在我想把本 阅读全文
posted @ 2017-08-25 17:06 web男 阅读(1959) 评论(0) 推荐(0) 编辑
摘要: 服务器端修改读写权限; 阅读全文
posted @ 2017-08-04 14:13 web男 阅读(425) 评论(0) 推荐(0) 编辑