随笔分类 -  git

摘要:ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" 阅读全文
posted @ 2021-01-18 13:53 JacobYUN 阅读(281) 评论(0) 推荐(0)
摘要:git init 初始化 git add . 添加所有文件 git commit -m '1' 提交文件 git remote add origin https://github.com/OliveKong/poster.git 连接远程仓库 git push -u origin master 把本 阅读全文
posted @ 2020-11-19 16:49 JacobYUN 阅读(99) 评论(0) 推荐(0)