ubuntu 下github使用(简要过程)

来源:互联网 发布:孤寡老人数据 编辑:程序博客网 时间:2024/06/05 11:20

身为一个码农,掌握必要的代码管理工具,是必不可少的。这里简单介绍一下github的简单使用过程。

一、注册github账号。

请自行进入https://github.com进行注册。

二、安装git及一些基本设置。

1.安装git  

sudo apt-get install git
2.设置github账号信息

git config --global user.name "your name here"git config --global user.email "your email@example.com"

这里“your name here”输入的是你注册github的用户名,这一步是设置你提交时,默认的用户名。

类似的,“your email@example.com”是你注册github账号的邮箱,也可以用别的邮箱,不过用别的邮箱时,需要在github主页上设置里面把用的邮箱添加进去。

3.设置让credential helper 帮助我们在一定时间内在内存中保存我们的code,其中第二行为设置超时的时间

git config --global credential.helper cachegit config --global credential.helper 'cache --timeout=3600'

三、建立新的repository

https://github.com/new


四、针对一个新建立的repository的操作(已有项目,跳过此小节,直接看第五节)

1.先建立一个目录,该目录与你新建的repos有关 

mkdir ~/test_project
cd ~/test_projectgit init //初始化一个空的git repositorytouch README //README 文件用于描述该项目
2.提交刚刚加入的README文件

git add READMEgit commit -m "first commit" //-m 用于指定本次提交的描述信息
3.提交到repository

git remote add origin https://github.com//username//test_project.git
之后会要求输入用户名和密码,输入即可

提交命令是:

git push -u origin master

五、已有项目

1. 先clone下来

git clone https://github.com/username/test_project.git
2. 进入到test_project文件中,进行文件修改,删除等操作

3.提交

git add .   // .代表添加所有文件git commit -m "对文件操作的简易描述"git push -u origin master






0 0
原创粉丝点击