45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 电脑教程 > 阅读资讯:解决github搭建过程遇到的问题的方法

解决github搭建过程遇到的问题的方法

2016-08-31 19:11:26 来源:www.45fan.com 【

解决github搭建过程遇到的问题的方法

首先参考:http://callmepeanut.blog.51cto.com/7756998/1304912

一、注册一个GitHub账号

地址:https://github.com/

 

二、新建一个仓库

每次向GitHub提交的代码都会被放到一个仓库(repo)。为了把你的项目放到GitHub上,你需要有一个GitHub仓库来“入妆。

点击新仓库

解决github搭建过程遇到的问题的方法

在新的页面里填上仓库的名称(因为已经创建过了,所以为提示冲突):

解决github搭建过程遇到的问题的方法

点击创建后就OK了!

解决github搭建过程遇到的问题的方法

三、安装和配置git

使用yum安装

1
yum -y install git

完成后查看是否成功

1
2
[root@localhost ~]# git --version
git version1.7.1

可以看到安装成功了,如果使用源码可以安装最新版本的。

接着就要设置用户名和Email了,Email最好和注册时候的一样。

1
2
3
4
$ git config --global user.name"Your Name Here"
# Sets the default name for git to use when you commit
$ git config --global user.email"your_email@example.com"
# Sets the default email for git to use when you commit

上面的内容都写在配置文件~/.gitconfig里了

恭喜,到这里,基本Git和GitHub都配置好了!

 

四、创建和提交项目

这里给官方提供的例子吧,Hello-World为项目名称。

1
2
3
4
5
6
7
8
9
$mkdir~/Hello-World
# Creates a directory for your project called "Hello-World" in your user directory
$cd~/Hello-World
# Changes the current working directory to your newly created directory
$ git init
# Sets up the necessary Git files
# Initialized empty Git repository in /Users/you/Hello-World/.git/
$touchREADME
# Creates a file called "README" in your Hello-World directory

如果已经有项目了,就只用切换到项目目录,然后git init。

接着向Git提交修改

1
2
3
4
$ git add *
# Stages your README file, adding it to the list of files to be committed
$ git commit -m'first commit'
<code class="bash comments" style="padding:0px!important; margin:0px!important; border:0px!important; bottom:auto!important; float:none!important; left:auto!important; line-height:1.1em!important; outline:0px!important; overflow:visible!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-family:Consolas,'Bitstream Vera Sans Mono','Courier New',Courier,monospac

本文地址:http://www.45fan.com/dnjc/70438.html
Tags: 搭建 我的 github
编辑:路饭网
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部