首页 > 代码库 > git和github菜鸟使用步骤
git和github菜鸟使用步骤
刚刚在windows7下安装完git。奉上安装步骤。
git安装
安装git程序。运行以下操作:
1.
$ cd ~/.ssh //检查计算机ssh密钥
2.假设没有提示:No such file or directory 说明你不是第一次使用git,运行以下的操作,清理原有ssh密钥
$ ls
config id_rsa id_rsa.pub known_hosts
$ mkdir key_backup
$ cp id_rsa* key_backup
$ rm id_rsa*
3.获得密钥:
ssh-keygen -t rsa -C "defnngj@gmail.com"//填写email地址,然后一直“回车”ok
打开本地..\.ssh\id_rsa.pub文件。此文件中面内容为刚才生成人密钥。
4. 登陆github系统。点击右上角的 Account Settings--->SSH Public keys ---> add another public keys
把你本地生成的密钥拷贝到里面(key文本框中), 点击 add key 就ok了
5. 接着打开git 。測试连接是否成功
$ ssh -T git@github.com
假设提示:Hi defnngj You‘ve successfully authenticated, but GitHub does not provide shell access. 说明你连接成功了
6. 设置用户信息:
6.1
$ git config --global user.name "defnngj"//给自己起个username
$ git config --global user.email "defnngj@gmail.com"//填写自己的邮箱
6.2
在github中找到 Account Settings--->Account Admin ,找到一下信息:
Your API token is e97279836f0d415a3954c1193dba522f ---keep it secret! Changing your password will
generate a new token
$ git config --global github.user defnngj //github 上的username
$ git config --global github.token e97279836f0d415a3954c1193dba522f
git上传文件到服务端
1. 回到github首页,点击页面右下角“New Repository”
填写项目信息:
project name: hello world
description : my first project
点击“Create Repository” 。 如今完毕了一个项目在github上的创建。
2. 我们须要使用git在本地创建一个同样的项目。
$ makdir ~/hello-world //创建一个项目hello-world
$ cd ~/hello-world //打开这个项目
$ git init //初始化
$ touch README
$ git add README //更新README文件
$ git commit -m ‘first commit‘//提交更新,并凝视信息“first commit”
$ git remote add origin git@github.com:defnngj/hello-world.git //连接远程github项目
$ git push -u origin master //将本地项目更新到github项目上去
如今查看github上面的hello world 项目。是不是发现已经将本地中的README文件更新上来了。 :) 恭喜!
git GUI使用
以下。我们開始使用Git Gui
以下。我们開始使用Git Gui
假设你想init一个本地的git仓库。到你的代码根文件夹下。右键选择Git Init Here
这时。你会发如今代码根文件夹下,生成了一个.git的隐藏属性文件夹。
再选择git gui
这里有非常多命令。你能够直接把你的代码add到仓库,再commit,然后再上传到github
在代码根文件夹。右键选择Git add all files now
再打开git gui,选择“提交“(commit),输入提交信息。空信息是不能够提交的。
假设要上传到github,须要选择远端(remote)->Add
这相当于执行git remote add origin git@github.com:lettoo/orion.git
这里lettoo/orion.git是我的仓库信息
Remote Add成功后。接下来就是上传了
这相当于执行git push origin master命令。
上传成功后,到github.com站点上就能够看到你的项目代码已经上传了。
git和github菜鸟使用步骤