<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>我的笔记</title>
    <link>https://cloud-ai.cn/</link>
    <description>Recent content on 我的笔记</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <lastBuildDate>Sat, 06 Jun 2026 10:15:50 +0800</lastBuildDate>
    <atom:link href="https://cloud-ai.cn/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>K8s Install</title>
      <link>https://cloud-ai.cn/posts/k8s-install/</link>
      <pubDate>Sat, 06 Jun 2026 10:15:50 +0800</pubDate>
      <guid>https://cloud-ai.cn/posts/k8s-install/</guid>
      <description>0.安装docker 系统选型，由于centos已停止维护，建议使用ubuntu 20.04.4 LTS&#xA;Ubuntu 20.04.4 LTS (Focal Fossa)&#xA;https://releases.ubuntu.com/20.04/ubuntu-20.04.4-live-server-amd64.iso&#xA;vi /etc/apt/sources.list #建议修改为阿里云源，速度更快，将文件内容清空，完全替换即可 deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse deb http://mirrors.</description>
    </item>
    <item>
      <title>Git使用教程</title>
      <link>https://cloud-ai.cn/posts/git%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B/</link>
      <pubDate>Sat, 06 Jun 2026 10:10:44 +0800</pubDate>
      <guid>https://cloud-ai.cn/posts/git%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B/</guid>
      <description>0.安装并配置git 下载地址：&amp;lt;Git (git-scm.com)&amp;gt;&#xA;下载对应系统版本的git，并一路next安装即可，都保持默认即可。&#xA;执行下面命令配置全局用户名和邮箱&#xA;git config --global user.name &amp;#34;xxx&amp;#34; git config --global user.email xxx@example.com 此配置保存在用户家目录下的.gitconfig中，查看配置可以执行&#xA;git config --global -l&#xA;1.创建新仓库 mkdir test cd test git init 2.检出仓库 git clone https://gitee.com/liuliwei91/notes.git&#xA;3.添加和提交 git add . git commit -m &amp;#34;备注信息&amp;#34; 4.push到远程仓库 添加远程仓库 git remote add git@gitee.com:liuliwei91/notes.git&#xA;push到远程仓主分支 git push origin master&#xA;如果github或者gitee没有绑定本地的ssh公钥，会弹出输入账号密码&#xA;5.生成并绑定ssh公钥 生成公钥 在git-bash中执行ssh-keygen，一路回车即可，生成的公钥和私钥保存在本地用户的家目录中的.ssh文件夹&#xA;绑定公钥 登录远程仓库，一般在设置–安全设置中可以绑定ssh公钥，例如码云：&#xA;将本地的id_rsa.pub使用txt打开，然后复制粘贴到公钥框里确定即可&#xA;设置后再使用git push就无需密码验证了&#xA;6.分支 分支是用来将特性开发绝缘开来的。在你创建仓库的时候，master 是“默认的”。在其他分支上进行开发，完成后再将它们合并到主分支上。&#xA;创建一个dev分支，并切换过去： git checkout -b dev&#xA;切换回主分支： git checkout master</description>
    </item>
  </channel>
</rss>
