1、下载安装完git,打开Git Bash Here
2、初始化 git : git init
3、在D盘手动创建“SSHkey密钥”文件夹 cd d:
4、创建 ssh key
ssh-keygen -t rsa -b 4096 -C "自己gitthub上绑定的邮箱"
询问你Enter a file in while to save the key (/c/Users/you/.ssh/id_rsa):[Press enter]直接按回车使用默认地址存放ssh key,
或者自己输入地址(例如:123456),一路回车:
5、在“SSHKey” 文件夹中复制ssh key密钥,登录Git Hub添加密钥,在个人主页点击“setting - SSH and GPG keys - New SSH key”,点击进行添加:
6、进入桌面路径:
cd ~/Desktop
7、克隆 Git Hub: git clone git@github.com:123456-cq/xkq34_src.git
8、查看所有分支
git branch -a
带* 的是本地 * master
下面是远程的:
remotes /origin/123456wy
9、进入远程仓库 (记得加 -b 本地的不需要)
git checkout -b origin /123456wy
10、查看你的版本
git log --pretty =oneline
我们可以通过版本号来控制版本
11、退回版本
git reset --hard id
12、切换到某个分支下:
git checkout master (master 是指 分支名)
13、往分支里面添加:
git push origin 123456wy 更新上传
git add . 添加
git commit -m \'ces1\' 提交
以上仅限于个人总结,仅作交流学习,期待与大家可以多多评论交流。