http://github.com/ 服务器
a.注册账号
b.生成密钥 添加到github上
ssh-keygen -t rsa -C "你注册的邮箱"
注意:注册的邮箱必须经过验证!
C:\Users\chenjian\.ssh
id_rsa
id_rsa.pub √ 复制里面的内容
放到github网站上:
操作步骤:
1 右上角小人哪里 点击 【Setings】
2 点击【SSH keys】--> 【New SSH key】 最后保存
2 添加邮箱 【Emails】
3 修改配置文件
查看配置文件: git config -l
添加 用户名 和邮箱:
git config --global user.name "你注册的用户名"
git config --global user.email "你注册的邮箱"
---------------------------------------------------
wangbinlucky@163.com
3 使用git
1 建立仓库
a、服务器 新建仓库
选择【+】
输入仓库名称
前提: 没有初始化 readme文件!
echo "内容" >> "a.txt"
git add "a.txt"
git commit -m "日志log" 暂存区
---------------------------------
git remote add origin "https://github.com/用户名/aaa.git"
git push -u origin master
2 有初始化文件
本地克隆一份远程的项目
git clone "https://github.com/用户名/aaa.git"
3步:添加add 提交commit 在提交push
b、本地 新建一个仓库
新建目录
执行命令 git init
------------------------------------------
*****后续的操作 只有三步
1 git add .
2 git commit -m "log"
3 git push
从服务器拉数据: git pull