Skip to content

Commit

Permalink
Merge pull request #173 from GuoXiCheng/dev-c
Browse files Browse the repository at this point in the history
Dev c
  • Loading branch information
GuoXiCheng authored Feb 6, 2024
2 parents 03fcd03 + 988285b commit e6c03c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/.vuepress/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export default hopeTheme({
contributors: false,
updatedTime: true,
createdTime: true
}
},
search: true
},
});
7 changes: 6 additions & 1 deletion src/cloud-native/git初始化.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,18 @@ git config --global user.email "[email protected]"

## 配置Git存储库SSH密钥

右击桌面,选择 **Git Bash Here**,打开Git Bash命令行窗口执行以下命令

![](/assets/image/cloud-native/git-menu.png)

```bash title="进入ssh目录"
cd ~/.ssh
```

```bash title="列出ssh目录下的文件"
ls
```

确定是否存在`id_rsa``id_rsa.pub`文件

如果不存在
Expand All @@ -35,4 +40,4 @@ cat id_rsa.pub

```bash title="测试是否配置成功"
ssh -T [email protected]
```
```

0 comments on commit e6c03c4

Please sign in to comment.