在Ubuntu上创建Git仓库并上传到GitHub

1、安装 Git $ sudo apt-get install git git-core 检查:git –version 2、基本配置 $ git config –global user.name your-name$ git config –global user.email your-email 3、假设项目名为 helloworld,执行下面命令,进到项目目录,创建版本库

1、安装 Git

$ sudo apt-get install git git-core

  检查:git --version

2、基本配置

$ git config --global user.name <your-name>
$ git config --global user.email <your-email>

3、假设项目名为 helloworld,执行下面命令,进到项目目录,创建版本库

$ cd helloworld
$ echo "# helloworld" >> README.md
$ git init

4、Staging 被修改的文件,并提交更新

$ git add .
$ git commit -m "first commit"

5、仓库托管到 GitHub,需要 SSH Key 验证,执行下面命令创建 SSH Key

$ ssh-keygen -t rsa

  之后在 ~/.ssh/ 目录下可以看到 id_rsaid_rsa.pub 两个文件。这两个就是 SSH Key 的秘钥对,其中,id_rsa 是私钥,不能泄露出去,id_rsa.pub 是公钥,可以放心地告诉任何人。

6、然后登陆 GitHub,上传 SSH Key 公钥

  依次选择“Settings –> SSH and GPG keys –> New SSH key”,填上适当的 Title,并复制 id_rsa.pub 文件的内容粘贴在 Key 文本框里。

7、在 GitHub 上新建一个仓库(假设名为 helloworld),然后执行如下命令

$ git remote add origin https://github.com/<your-name>/helloworld.git

8、接着,就可以把本地仓库的所有内容推送到远程仓库

$ git push -u origin master

可能遇到的问题:

1、remote: fatal: early EOF

  在repo sync 时,,出现“remote: fatal: early EOF”错误,解决方法是修改家目录下 .gitconfig 文件,添加如下内容:

[core] compression = -1

2、提示如下警告

remote: warning: GH001: Large files detected. You may want to try Git Large File Storage – https://git-lfs.github.com.
remote: warning: See http://git.io/iEPt8g for more information.
remote: warning: File xxx is 55.80 MB; this is larger than GitHub’s recommended maximum file size of 50.00 MB

  这是因为有的文件大小超过 50 MB,参考说明,可知:GitHub will warn you when pushing files larger than 50 MB. You will not be allowed to push files larger than 100 MB.

作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部