随笔分类 -  Git

摘要:# 为第一个账号生成密钥 ssh-keygen -t ed25519 -C "your_email1@example.com" -f ~/.ssh/id_ed25519_account1 # 为第二个账号生成密钥 ssh-keygen -t ed25519 -C "your_email2@examp 阅读全文
posted @ 2025-07-29 22:12 JustinBeebor 阅读(16) 评论(0) 推荐(0)
摘要:1,创建新仓库命令 echo "# Note" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin git@github.com:j 阅读全文
posted @ 2024-05-11 21:01 JustinBeebor 阅读(29) 评论(0) 推荐(0)