-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from GuoXiCheng/dev-c
Dev c
- Loading branch information
Showing
3 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,6 +169,7 @@ export default hopeTheme({ | |
contributors: false, | ||
updatedTime: true, | ||
createdTime: true | ||
} | ||
}, | ||
search: true | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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`文件 | ||
|
||
如果不存在 | ||
|
@@ -35,4 +40,4 @@ cat id_rsa.pub | |
|
||
```bash title="测试是否配置成功" | ||
ssh -T [email protected] | ||
``` | ||
``` |