致谢 感谢TurboWay给出的Big-Screen模板,特此鸣谢!
github自带的:friendy0.github.io
如果打不开,可使用:vis.frid.tech
-
pages
该文件夹存放的是要被嵌入的网页
-
sources
该文件夹存放的是您的数据
-
static
该文件存放的是静态数据如css、font、images、js、picture等
发现js不同版本也会有方法调用不同的问题,各个图调用的相同的js包但版本不同的话会有各种错,故不再统一用此处的js包(如果是最新版的可以用此处的包)。
-
index.html
这是首页
# first time to use
git clone https://github.com/Friendy0/friendy0.github.io.git
# if you had cloned the project before, do this to refresh your code from remote warehouse.
# git pull https://github.com/Friendy0/friendy0.github.io master
# then you can the thing that you want
# commit your code to your local warehouse?
git commit -m "the message you want to convey"
# git add 新增的文件名
# git restore 修改的文件名
# push to remote
git push https://github.com/Friendy0/friendy0.github.io master
-
Failed to connect to github.com port 443
git config --global https.proxy git config --global --unset http.proxy git config --global --unset https.proxy
-
fatal: unable to access ‘sshAddress‘: OpenSSL SSL_read: Connection was reset, errno 10054
git config --global http.sslVerify "false"
-
Your branch is ahead of 'origin/master' by 1 commit.
git fetch
-
Your branch is up-to-date with 'origin/master
git branch 新分支名 git branch # 检查是否创建成功 git checkout 新分支名 git add . git commit -m "the message you want to convey" git status git checkout master git merge 新分支名 git push https://github.com/Friendy0/friendy0.github.io master git branch -D 新分支名
-
git commit -m git push