Github

Posted by chenxf on August 7, 2022

官网注册github,并创建一个仓库

下载git客户端,包含gitbash,可在gitbash中操作

将网上仓库及其内部文件拷贝到本地

git clone https://github.com/省略/省略.github.io.git

使用cd进入本地文件夹位置,注意,不能停留于上级文件夹,一定要定位到最底层的XXX.github.io

cd

可以用指令查看本地的文件名字

ls

对本地文件夹进行初始设置,使本地文件夹与网页中的仓库对上。初始化后会生成隐藏文件init。对上后,可以用指令检查是否存在。

git init git remote add origin https://github.com/省略/省略.github.io.git git remote -v

关联用户名和邮箱

$ git config user.name “姓名” –global $ git config user.email “your email” –global 检查是否关联成功 $ git config user.name 查看返回的显示结果 $ git config user.email 查看返回的显示结果

生成本地的key

$ ssh-keygen -t ed25519 -C “省略@邮箱.com”

一路按回车,最后成功后提示已经创建,可到指定位置去复制key Your identification has been saved in /c/Users/Administrator/.ssh/id_ed25519 Your public key has been saved in /c/Users/Administrator/.ssh/id_ed25519.pub

将key 粘贴到github网页版对应区域,让github网页跟本地的key能对上暗号 SSH and GPG keys

接下来可以自己对内容进行扩充

之后可以进行上传。注意步骤。

git add . git commit -m “注释” git push origin master

参考教程 How to upload files to github from Git Bash on Windows from scratch - YouTube

在不同电脑上git push同个github账户下的repositories