We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
此文章是笔者在 github 使用中的一些经验性总结,学习的新姿势会同步更新,记录。
你可以正常访问 github.com 网页并且正常提交代码吗?
github.com
1、关于正常访问网页版
下面是通过修改本地 hosts 文件的方式增强访问,推荐采用网络代理方案。
git.exe push --progress "origin" master:master fatal: unable to access 'https://github.com/yanyue404/...': OpenSSL SSL_read: Connection was reset, errno 10054
git push 的时候一直报错 443TimeOut, 这是网络的问题,需要配置一个可以访问外网的 git 代理,就可以提交了。
借助 Github 平台展示项目
(1)gh-pages 分支托管
在自己的 github 项目上添加gh-pages分支,并保证里面有需要展示的代码,以index.html作为入口就可以展示项目了, 展示地址就是 Github 用户名.github.io/创建的仓库名。
gh-pages
index.html
将本项目下的 dist 文件夹内容发布到远端的 gh-pages 分支
git subtree push --prefix=dist origin gh-pages
或者使用 shell 脚本上传:
deploy.sh
#!/usr/bin/env sh # 确保脚本抛出遇到的错误 set -e # 生成静态文件 npm run build # 进入生成的文件夹 cd docs/.vuepress/dist # 如果是发布到自定义域名 # echo 'www.example.com' > CNAME git init git add -A git commit -m 'deploy: vuepress docs' # 如果发布到 https://<USERNAME>.github.io git push -f https://github.com/yanyue404/mingdao.git master:gh-pages cd -
例子:
(2)角落的Fork me on GitHub标签 —— github-corners
Fork me on GitHub
(3)Logo
为自己的项目添加一个漂亮的 Logo。
(4)README
为自己的项目写一个 README.md 的 markdown 说明文件
README.md
1、开源团队
(1)国内:
(2)国外:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
前言
此文章是笔者在 github 使用中的一些经验性总结,学习的新姿势会同步更新,记录。
目录
可访问性
你可以正常访问
github.com
网页并且正常提交代码吗?1、关于正常访问网页版
下面是通过修改本地 hosts 文件的方式增强访问,推荐采用网络代理方案。
2、关于正常提交代码
git push 的时候一直报错 443TimeOut, 这是网络的问题,需要配置一个可以访问外网的 git 代理,就可以提交了。
展示自己的项目
借助 Github 平台展示项目
(1)gh-pages 分支托管
在自己的 github 项目上添加
gh-pages
分支,并保证里面有需要展示的代码,以index.html
作为入口就可以展示项目了, 展示地址就是 Github 用户名.github.io/创建的仓库名。将本项目下的 dist 文件夹内容发布到远端的
gh-pages
分支或者使用 shell 脚本上传:
deploy.sh
例子:
(2)角落的
Fork me on GitHub
标签 —— github-corners(3)Logo
为自己的项目添加一个漂亮的 Logo。
(4)README
为自己的项目写一个
README.md
的 markdown 说明文件专业指引
其他物料
1、开源团队
(1)国内:
(2)国外:
参与开源贡献
The text was updated successfully, but these errors were encountered: