vlambda博客
学习文章列表

使用git管理github代码

【GitHub代码托管

现在越来越多的人选择github平台来管理项目以及相关代码,不光是个人,许多企业也将项目托管到github上,这使得用git+github这种实现远程库托管的方式成为了从业者的一项必备技能!作为一个未毕业的学生,我感觉也应该养成管理代码的习惯,更好的为以后做准备!
【g ithub建库
No.1  需要有github账号

这里可以去github官网:https://github.com/  去注


No.2 新建项目库


No.3 填写库的信息

使用git管理github代码

【git安装与配置】

No.1 安装git

cmd命令行进行安装
# 安装gitbrew install git

下载安装包安装    网址: https://git-scm.com/ 选择版本进行安装

使用git管理github代码

安装检测

// 检测git是否安装成功!brew list
安装完成后我们就用Git Bash Here 代替终端

鼠标右击就可以找到.....

No.2 配置git

设置用户名和邮箱

git config --global user.name "用户名"git config --global user.email "邮箱"

通过终端命令在本地创建ssh key

ssh-keygen -t rsa -C '邮箱'

会得到以下输出,需要确认路径和密码(其中密码默认为空,直接回车)。

使用git管理github代码



No.3 配置将密钥绑定github

找到密钥 默认路径:C:\Users\电脑用户名\.ssh

使用git管理github代码

用记事本打开id_rsa.pub文件,复制密钥

使用git管理github代码

到github找到头像,点击找到设置点击进入

使用git管理github代码

后再找到SSH and GPG keys

使用git管理github代码

选择new SSH key 然后进行以下操作!

使用git管理github代码

测密钥是否设置成功

ssh -T git@github.com 

使用git管理github代码

【创建本地库】

No.1 根据习惯创建一个文件夹

使用git管理github代码

No.2 进入文件夹里右击找到git bash here

本地库进行初始化

$ git initInitialized empty Git repository in /Users/cdd/cdd_git/.git/

使用git添加文档

$ git add file.md 

使用git commit提交文档;-m 后为本次commit的说明,方便将来查看。

$ git commit -m 'commit an import file'[master (root-commit) 612b72c] commit an important file 1 file changed, 2 insertions(+) create mode 100644 file.md

【git与github文件互传】

No.1 关联本地库

去github进入新建的库里 复制库链接

使用git管理github代码

回到本地库用git bash here进行关联!

# git remote add origin + 复制的链接git https://github.com/miaoxiaocunzai/icarus-.git

No.2本地库与远程库互传文档

git管理文档,主要分为git push和git pull两部分,其中,git push将本地库文档上传到远程库,git pull将远程库文档载到本地库

$ git push -u origin master

注意:如果远程库原本有文档,不是空的!一定要先保证本地的代码和服务器代码一致!执行如下命令,然后再push

git pull --rebase origin master

使用git管理github代码 完成!