Git
文章平均质量分 96
Elson_6
Talk is cheap, show me the code.
展开
-
Git的使用
准备工作:安装Git。一、新建一个项目存储到仓库1.1 创建文件夹 –>mkdir 文件夹名$ mkdir git_demo1.2 进入到指定的文件夹下–>cd 文件夹名$ cd git_demo 1.3 显示当前所在的绝对路径$ pwd /c/Users/Administrator/Desktop/git_demo 1.4 初始化仓库–>git init$ git init Initial原创 2016-07-20 22:13:16 · 1351 阅读 · 0 评论 -
Git — 关联远程仓库
远程仓库 1. 生成公私钥 $ ssh-keygen -t rsa -C "aaa@163.com"把邮件地址换成自己的邮件,然后一路回车,使用默认值即可; Generating public/private rsa key pair. Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa)...原创 2018-03-20 00:12:52 · 400 阅读 · 0 评论 -
Git — Permanently added the RSA host key for IP address
问题: Permanently added the RSA host key for IP address ‘192.168.**.**’ to the list of known hosts。 使用git提交代码到github时遇到这个问题: Permanently added the RSA host key for IP address ‘192.168.**.**’ to ...原创 2018-03-20 20:36:33 · 861 阅读 · 0 评论 -
Git — 创建与合并分支
常用的命令原创 2018-07-11 21:23:45 · 161 阅读 · 0 评论