2018-09-08 22:05:01 +08:00
|
|
|
|
初学者指南:在 Ubuntu Linux 上安装和使用 Git 和 GitHub
|
2018-09-03 21:08:13 +08:00
|
|
|
|
======
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
Github 是一个存放着世界上最棒的一些软件项目的宝藏,这些软件项目由全世界的开发者无私贡献。这个看似简单,实则非常强大的平台因为大大帮助了那些对开发大规模软件感兴趣的开发者而被开源社区所称道。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
这篇向导是对于安装和使用 GitHub 的的一个快速说明,本文还将涉及诸如创建本地仓库,如何链接这个本地仓库到包含你的项目的远程仓库(这样每个人都能看到你的项目了),以及如何提交改变并最终推送所有的本地内容到 Github。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
请注意这篇向导假设你对 Git 术语有基本的了解,如推送、拉取请求(PR)、提交、仓库等等。并且希望你在 GitHub 上已注册成功并记下了你的 GitHub 用户名,那么我们这就进入正题吧:
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
### 1、在 Linux 上安装 Git
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
下载并安装 Git:
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
sudo apt-get install git
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 23:13:03 +08:00
|
|
|
|
上面的命令适用于 Ubuntu 并且应该在所有最新版的 Ubuntu 上都能工作,它们在 Ubuntu 16.04 和 Ubuntu 18.04 LTS(Bionic Beaver)上都测试过,在将来的版本上应该也能工作。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
### 2、配置 GitHub
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
一旦安装完成,接下去就是配置 GitHub 用户的详细配置信息。请使用下面的两条命令,并确保用你自己的 GitHub 用户名替换 `user_name`,用你创建 GitHub 账户的电子邮件替换 `email_id`。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
git config --global user.name "user_name"
|
|
|
|
|
git config --global user.email "email_id"
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
下面的图片显示的例子是如何用我的 GitHub 用户名:“akshaypai” 和我的邮件地址 “abc123@gmail.com” 来配置上面的命令。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
[![Git config][3]][4]
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
### 3、创建本地仓库
|
|
|
|
|
|
2018-09-03 21:08:13 +08:00
|
|
|
|
在你的系统上创建一个目录。它将会被作为本地仓库使用,稍后它会被推送到 GitHub 的远程仓库。请使用如下命令:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
git init Mytest
|
|
|
|
|
```
|
2018-09-08 22:05:01 +08:00
|
|
|
|
|
2018-09-03 21:08:13 +08:00
|
|
|
|
如果目录被成功创建,你会看到如下信息:
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
```
|
2018-09-03 21:08:13 +08:00
|
|
|
|
Initialized empty Git repository in /home/akshay/Mytest/.git/
|
2018-09-08 22:05:01 +08:00
|
|
|
|
```
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
这行信息可能随你的系统不同而变化。
|
2018-09-08 22:05:01 +08:00
|
|
|
|
|
|
|
|
|
这里,`Mytest` 是创建的目录,而 `init` 将其转化为一个 GitHub 仓库。将当前目录改为这个新创建的目录。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
cd Mytest
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
### 4、新建一个 README 文件来描述仓库
|
|
|
|
|
|
|
|
|
|
现在创建一个 `README` 文件并输入一些文本,如 “this is git setup on linux”。README 文件一般用于描述这个仓库用来放置什么内容或这个项目是关于什么的。例如:
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
gedit README
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
你可以使用任何文本编辑器。我喜欢使用 gedit。`README` 文件的内容可以为:
|
|
|
|
|
|
|
|
|
|
```
|
2018-09-03 21:08:13 +08:00
|
|
|
|
This is a git repo
|
2018-09-08 22:05:01 +08:00
|
|
|
|
```
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
### 5、将仓库里的文件加入一个索引
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
这是很重要的一步。这里我们会将所有需要推送到 GitHub 的内容都加入一个索引。这些内容可能包括你第一次加入仓库的文本文件或者应用程序,也有可能是对已存在文件的一些编辑(文件的一个更新版本)。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
既然我们已经有了 `README` 文件,那么让我们创建一个别的文件吧,如一个简单的 C 程序,我们叫它 `sample.c`。文件内容是:
|
|
|
|
|
|
|
|
|
|
```
|
2018-09-03 21:08:13 +08:00
|
|
|
|
#include<stdio.h>
|
|
|
|
|
int main()
|
|
|
|
|
{
|
2018-09-08 23:13:03 +08:00
|
|
|
|
printf("hello world");
|
|
|
|
|
return 0;
|
2018-09-03 21:08:13 +08:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
现在我们有两个文件了。`README` 和 `sample.c`。
|
|
|
|
|
|
|
|
|
|
用下面的命令将它们加入索引:
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
git add README
|
|
|
|
|
git add smaple.c
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
请注意 `git add` 命令能将任意数量的文件和目录加入到索引。这里,当我说 “索引” 的时候,我是指一个有一定空间的缓冲区,这个缓冲区存储了所有已经被加入到 Git 仓库的文件或目录。
|
|
|
|
|
|
|
|
|
|
### 6、将所作的改动加入索引
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
所有的文件都加好以后,你就可以提交了。这意味着你已经确定了最终的文件改动(或增加),现在它们已经准备好被上传到我们自己的仓库了。请使用命令:
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
git commit -m "some_message"
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 23:13:03 +08:00
|
|
|
|
“some_message” 在上面的命令里可以是一些简单的信息如“我的第一次提交”或者“编辑了readme 文件”,等等。
|
2018-09-08 22:05:01 +08:00
|
|
|
|
|
|
|
|
|
### 7、在 GitHub 上创建一个仓库
|
|
|
|
|
|
2018-09-08 23:13:03 +08:00
|
|
|
|
在 GitHub 上创建一个仓库。请注意仓库的名字必须和你本地创建的仓库的名字严格一致。在这个例子里是 “Mytest”。请首先登录你的 [GitHub](https://github.com) 账户。点击页面右上角的 “+” 符号,并选择“create nw repository”。如下图所示填入详细信息,点击 “create repository”。
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
[![Creating a repository on GitHub][5]][6]
|
2018-09-08 22:05:01 +08:00
|
|
|
|
|
2018-09-03 21:08:13 +08:00
|
|
|
|
一旦创建完成,我们就能将本地的仓库推送到 GitHub 你名下的仓库,用下列命令连接 GitHub 上的仓库:
|
2018-09-08 22:05:01 +08:00
|
|
|
|
|
|
|
|
|
> 请注意:请确保在运行下列命令前替换了路径中的 “user_name” 和 “Mytest” 为你的 GitHub 用户名和目录名!
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
git remote add origin https://github.com/user\_name/Mytest.git>
|
|
|
|
|
```
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
### 8、将本地仓库里的文件推送到 GitHub 仓库
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
最后一步是用下列的命令将本地仓库的内容推送到远程仓库(GitHub):
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
git push origin master
|
|
|
|
|
```
|
2018-09-08 22:05:01 +08:00
|
|
|
|
|
|
|
|
|
当提示登录名和密码时键入登录名和密码。
|
|
|
|
|
|
2018-09-08 23:13:03 +08:00
|
|
|
|
下面的图片显示了步骤 5 到步骤 8 的流程
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
[![Pushing files in local repository to GitHub repository][7]][8]
|
|
|
|
|
|
2018-09-08 22:05:01 +08:00
|
|
|
|
上述将 Mytest 目录里的所有内容(文件)推送到了 GitHub。对于以后的项目或者创建新的仓库,你可以直接从步骤 3 开始。最后,如果你登录你的 GitHub 账户并点击你的 Mytest 仓库,你会看到这两个文件:`README` 和 `sample.c` 已经被上传并像如下图片显示:
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
[![Content uploaded to Github][9]][10]
|
|
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
via: https://www.howtoforge.com/tutorial/install-git-and-github-on-ubuntu/
|
|
|
|
|
|
|
|
|
|
作者:[Akshay Pai][a]
|
|
|
|
|
选题:[lujun9972](https://github.com/lujun9972)
|
|
|
|
|
译者:[DavidChenLiang](https://github.com/DavidChenLiang)
|
2018-09-08 22:05:01 +08:00
|
|
|
|
校对:[wxy](https://github.com/wxy)
|
2018-09-03 21:08:13 +08:00
|
|
|
|
|
|
|
|
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
|
|
|
|
|
|
|
|
|
[a]:https://www.howtoforge.com/tutorial/installing-tensorflow-neural-network-software-for-cpu-and-gpu-on-ubuntu-16-04/
|
|
|
|
|
[1]:https://github.com/
|
|
|
|
|
[2]:https://www.howtoforge.com/cdn-cgi/l/email-protection
|
|
|
|
|
[3]:https://www.howtoforge.com/images/ubuntu_github_getting_started/config.png
|
|
|
|
|
[4]:https://www.howtoforge.com/images/ubuntu_github_getting_started/big/config.png
|
|
|
|
|
[5]:https://www.howtoforge.com/images/ubuntu_github_getting_started/details.png
|
|
|
|
|
[6]:https://www.howtoforge.com/images/ubuntu_github_getting_started/big/details.png
|
|
|
|
|
[7]:https://www.howtoforge.com/images/ubuntu_github_getting_started/steps.png
|
|
|
|
|
[8]:https://www.howtoforge.com/images/ubuntu_github_getting_started/big/steps.png
|
|
|
|
|
[9]:https://www.howtoforge.com/images/ubuntu_github_getting_started/final.png
|
|
|
|
|
[10]:https://www.howtoforge.com/images/ubuntu_github_getting_started/big/final.png
|