1.安装
yum install git git-gui
2.生成密钥对
ssh-keygen -t rsa -C "github邮箱地址"
1、首先要检查key是不是已经存在,
2、打开一个终端,并输入以下命令:
$ ls -al ~/.ssh
如果结果列表中包含以下文件, 则不需要在生成新的KEY, 可以直接使用。
id_dsa.pub
id_ecdsa.pub
id_ed25519.pub
id_rsa.pub
3、如果不存在, 则需要创建新的Key来使用。
输入下面的命令来生成key, 注意替换你自己的邮箱地址。
$ ssh-keygen -t rsa -C "your_email@example.com"
# Creates a new ssh key using the provided email
Generating public/private rsa key pair.
Enter file in which to save the key (/your_home_path/.ssh/id_rsa):
4、这里在提示你保存key的位置, 默认直接回车就可以。
Enter passphrase (empty for no passphrase):
当你看到这个的时候, 输入你的密码。
Enter same passphrase again:
再次输入, 以确认密码。
5、当以上步骤成功完成后, 你将看到类似与这样的结果:
Your identification has been saved in /your_home_path/.ssh/id_rsa.
Your public key has been saved in /your_home_path/.ssh/id_rsa.pub.
The key fingerprint is:
01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your_email@example.com
6、执行以下命令将KEY加入到ssh-agent:
$ eval "$(ssh-agent -s)"
# Agent pid 59566
$ ssh-add ~/.ssh/id_rsa
7、打开 ~/.ssh/id_rsa.pub文件, 复制其中所有的内容。然后把它粘贴到github的ssh key(在右上角头像->Settings->左边菜单SSH and GPG keys->new SSH keys)添加的表单中。
执行以下命令来测试key。
$ ssh -T git@github.com
如果你看到:
The authenticity of host 'github.com (207.97.227.239)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)?
输入“yes”并回车。
Hi username! You've successfully authenticated,but GitHub does not
provide shell access.
9、Git全局用户配置
# git config --global user.name "xxx"
# git config --global user.email xxx@gmail.com
10、克隆远程库过程
git init 初始化仓库
git remote add origin (git@github.com:xiaoemoxiw/HLD-Laravel-Test.git)github项目上的地址
git pull origin master
git add .
git commit -m '填写完成了哪些模块'
git push origin master
12、冲突解决
git status 查看冲突状态
git fetch 查看分支
git reset --hard origin/master 应用git上的文件,废除本地文件
现在我们启动时光穿梭机,准备把readme.txt回退到上一个版本,也就是“add distributed”的那个版本,怎么做呢?
首先,Git必须知道当前版本是哪个版本,在Git中,用HEAD表示当前版本,也就是最新的提交3628164...882e1e0(注意我的提交ID和你的肯定不一样),上一个版本就是HEAD^,上上一个版本就是HEAD^^,当然往上100个版本写100个^比较容易数不过来,所以写成HEAD~100。
现在,我们要把当前版本“append GPL”回退到上一个版本“add distributed”,就可以使用git reset命令:
$ git reset --hard HEAD^
HEAD is now at ea34578 add distributed
原文链接:https://www.f2er.com/centos/376451.html