git的简单使用

Git是分布式的代码管理工具,远程的代码管理是基于SSH的,所以要使用远程的Git则需要SSH的配置。

一、github的SSH配置如下:

1.设置Git的user name和email:

git config --global user.name "你的账号"
git config --global user.email "你的注册邮箱"

2.生成SSH密钥:

ssh-keygen -t rsa -C "你的注册邮箱"

按3个回车,密码为空。

Your identification has been saved in ~/.ssh/id_rsa.
Your public key has been saved in ~/.ssh/id_rsa.pub.
The key fingerprint is:
………………

得到了两个文件:id_rsa和id_rsa.pub,将id_rsa.pub里的公钥追加到authorized_keys

3.在github上添加ssh密钥,拷贝id_rsa.pub的公钥进行添加

4.测试能否连上github

ssh -T [email protected]

二、开始使用github

假设github已经创建好项目库,名为test

在本地代码根目录下执行

git init
git add .
git commit -m "first commit"
git remote add origin [email protected]:你的账号/test.git
git push -u origin master

执行成功后,会在github上看到已经提交的代码。

你可能感兴趣的:(github,git)