From 1cb6aa46b05130596f09a0d34175cc771d3450cd Mon Sep 17 00:00:00 2001 From: zyimm Date: Tue, 4 Apr 2023 10:30:31 +0800 Subject: [PATCH] =?UTF-8?q?Git=20=E5=85=8D=E5=AF=86=E7=99=BB=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/git/no-login-required.md | 2 +- _posts/编程/C语言/implements-php-array.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/git/no-login-required.md b/_posts/git/no-login-required.md index dd3cadd..b6bba46 100644 --- a/_posts/git/no-login-required.md +++ b/_posts/git/no-login-required.md @@ -21,8 +21,8 @@ ssh-keygen -t rsa -C "your_email@example.com" ```sh git config --global core.sshCommand "openssh-client -o StrictHostKeyChecking=no -i /path/to/your/key.pem" ``` - 1. `--global` 参数代表全局使用,不全局使用则需要进入对应本地仓库目录进行设置 + 2. `/path/to/your/key.pem` 是你的私钥 ### 远程仓库设置公钥 diff --git a/_posts/编程/C语言/implements-php-array.md b/_posts/编程/C语言/implements-php-array.md index 357680b..1a37d13 100644 --- a/_posts/编程/C语言/implements-php-array.md +++ b/_posts/编程/C语言/implements-php-array.md @@ -1,7 +1,7 @@ --- title: C 语言实现类似php的array数据类型 date: 2023-03-30 -tags: Git +tags: C --- ```c