git hub 基础帮助

新手……帮助的一个副本

Global setup:

Download and install Git
git config –global user.name “Your Name”
git config –global user.email farmer1992@gmail.com

Next steps:

mkdir another-test
cd another-test
git init
touch README
git add README
git commit -m ‘first commit’
git remote add origin git@github.com:tg123/another-test.git
git push origin master

Existing Git Repo?

cd existing_git_repo
git remote add origin git@github.com:tg123/another-test.git
git push origin master

Importing a Subversion Repo?

Click here

When you’re done:

Continue

Read More

Apache配置引起的IE6下载zip损坏

今天遇到一个奇怪的问题
IE6 下载的zip包 无法打开
Firefox没问题

QA姐姐用非常变态的 IE6 浏览器
我开始还不相信 后来自己尝试了以下 果然有这个问题

IE 果然是神级浏览器
突然发现 损坏的压缩包 可以用7z打开
进一步发现 损坏的压缩包 是一个 .gz 文件

一切就清晰了
原来IE6有bug

apache中配置了
SetOutputFilter DEFLATE
这个 引起了下载问题

改为
AddOutputFilterByType DEFLATE text/html text/plain text/xml
问题解决

Read More