Git的常用操作

2017-10-11  本文已影响3人  黄同学2019

本文介绍如何在windows 中安装和使用 git

首先, 准备如下前置工作

第一步:配置Github

1.进入你的 github 页面 --> settings --> SSH and GPG keys --> 填写 Title 和 key (其中key将在下面的操作中得到)

2.打开 Git Bash --> 复制并运行rm -rf ~/.ssh/* 把现有的 ssh key 都删掉,切记:这句命令行如果你多打一个空格,可能就要重装系统了,建议复制运行!

3.运行 ssh-keygen -t rsa -b 4096 -C "你的邮箱",注意填写你的邮箱!

4.按回车三次

5.运行 cat ~/.ssh/id_rsa.pub,得到一串东西,完整的复制这串东西

6.回到上面第 1 步的页面,在 Title 输入「我的第一个 key」

7.在 Key 里粘贴刚刚你你复制的那串东西

8.点击 Add SSH key

9.回到 Git Bash,运行 ssh -T git@github.com,你可能会看到这样的提示:

pic

10.输入 yes , 然后如果你看到 Permission denied (publickey).就说明你失败了,请回到第 1 步重来,是的,回到第 1 步重来;

11.如果你看到 Hi Yourname! You've successfully authenticated, but GitHub does not provide shell access. 就说明你成功了!

第二步:配置Git

 1.git config --global user.name 你的英文名
 2.git config --global user.email 你的邮箱
 3.git config --global push.default matching
 4.git config --global core.quotepath false
 5.git config --global core.editor "vim"

第三步:使用Git——Git的三种常用方式

1.只是在本地使用

2.将本地仓库上传到github上

3.下载github上的仓库

第四步:上传更新

  1. git add 文件路径

  2. git commit 文件路径 -m "上传信息"

  3. git pull 将本地和github上的仓库信息同步

  4. git push

参考资料

上一篇下一篇

猜你喜欢

热点阅读