TranslateProject/sources/tech/20150324 How to Host Open Source Code Repository in github.md
2015-04-02 18:01:02 +08:00

5.9 KiB
Raw Blame History

怎样在Github上做开源代码库的主人

大家好今天我们要学习一下怎样管理github.com库中的开源软件源代码。GitHub是一个基于web的Git库托管服务提供分布式修改控制和Git的源代码管理(SCM)功能并加入了自身的特点。它给开源和私有项目提供了一个互相协作的工作区、代码预览和代码管理功能。不像Git一个完完全全的命令行工具GitHub提供了一个基于web的图形化界面和桌面也整合了手机。GitHub同时提供了私有库付费计划和免费账号都是用来管理开源软件项目的。

github universe logo

这是一种快速灵活基于web的托管服务它使用方便管理分布式修改控制系统也是相当容易任何人都能为了将它们使用、贡献、共享、问题跟踪和更多的全球各地数以百万计的人在github的库里管理他们的软件源代码。这里有一些简单快速地管理软件源代码的方法。

1. 创建一个新的Github账号

首先,打开你最喜欢的浏览器并访问github,首页页面如下所示。

Github Homepage

现在首页打开之后请填写一个新的github账号用于注册。

输入注册所需的有效信息之后你会被转到计划选择的步骤。在这个页面上有5种计划我们可以根据需要来选择这里我们要选择免费计划。所以我们点击选择Free计划并完成注册。如果我们接下去还打算创建一个组织那我们需要勾选“Help me setup an organization next”。

choosing plan

2. 创建一个新的库

成功注册新账号或登录上Github之后我们需要创建一个新的库来开始我们的正题。

点击位于顶部靠右账号id旁边的**(+)**按钮然后点击“New Repository”。

Add new repository

点击创建一个新的库之后,我们进入了填写所需信息的页面。

adding repository information

填写好信息之后我们点击绿色的“Create repository”按钮。

这些步骤都做完之后,我们将看到类似于下面这张图的页面。

repository github

3. 上传一个已有项目

如果我们想在Github上分享我们的项目我们自然要把代码推上我们创建的库中。想要这样的话我们首先要在我们的Linux机器上安装git。如果As I am running Ubuntu 14.04 LTS in my machine, I'll need to run apt manger to install it.

$ sudo apt-get install git

installing git

Now, as git is ready, we are now ready to upload the codes.

Note: To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub.

In Terminal, we'll need to change the current working directory to your local project then initialize the local directory as a Git repository/

$ git init

We'll then add the files in our new local repository. This stages them for the first commit.

$ git add .

Now, we'll need to commit the files that we've staged in our local repository.

$ git commit -m 'First commit'

git commit

In Terminal, we'll add the URL for the remote repository where our local repostory will be pushed.

$ git remote add origin remote Repository url
$ git remote -v

adding remote url

Note: Please do replace remote Repository url to the url of the remote repo.

Now, to push the changes in our local repository to GitHub's repo we'll need to run as below and enter the required credential for the repository.

$ git push origin master

pushing repo

克隆一个库

If we want to download a code repository from github straight to our local drives with a single command then, we can simply use git clone command which will clone the current directory to the remote repository.

$ git clone https://github.com/aruntechgeek/linspeed.git

cloning repo

Please change the above url to the repository you want to clone from.

更新改动

If we made changes to our code and want to push them to our remote repository then after changing the changes, we should run the following commands inside that directory.

$ git add .
$ git commit -m "Updating"
$ git push

结论

Hurray! We have successfully hosted our Project Source Code in Github repository. Github is fast and more flexible web based hosting service which is easy to use and to manage distributed revision control. Millions of awesome Open Source projects are hosted in github. So, if you have any questions, suggestions, feedback please write them in the comment box below. Thank you ! Enjoy Github :-)


via: http://linoxide.com/usr-mgmt/host-open-source-code-repository-github/

作者:Arun Pyasi 译者:ZTinoZ 校对:校对者ID

本文由 LCTT 原创翻译,Linux中国 荣誉推出