Github上创建项目

本文章来自【知识林】

Github是一个使用Git版本管理工具的管理仓库,git类似但优越于CVS、SVN等,具体的好处就不多描述,在使用过程中自然会有所体会。

Github官方网站:https://github.com/

创建一个版本库

  • 进入Github官方网站
  • 注册账号
  • 点击右上角的+
  • 点击New repository
  • 在Repository name处输入名称,如:spring-boot-test
  • 点击Create repository按钮以完成版本库的创建

将会出现以下提示信息(其实可以当帮助手册使用):

echo "# spring-boot-test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/zsl131/spring-boot-test.git
git push -u origin master

回到本地磁盘(我这里使用的本地目录是:E:\idea\2016_zslin\springboot-study),进入到需要创建的目录。

初始化本地仓库

E:\idea\2016_zslin\springboot-study>git init

如果没有在本机安装git的 请先安装git。可参照文档《Windows 中安装Git工具》或《在Centos 6.4中安装与配置Git》

这时将在springboot-study目录下自动创建一个.git的隐藏文件夹,这个文件夹就包含了git的所有相关数据。

提交忽略文件

初始化完成后,一般情况需要先提交一上忽略文件(.gitignore),这个文件的作用是过滤一些不必要提交的文件(夹),如.class、.jar等。

我的.gitignore文件的内容是:

target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

*.iml
.idea
target

hs_err_pid*
git add .gitignore
git commit -m "添加忽略文件"
git remote add origin https://github.com/zsl131/spring-boot-test.git
git push -u origin master

命令解释:

git add .gitignore:将.gitignore文件添加到版本管理中

git commit -m "添加忽略文件":将已加入版本管理且有修改的文件提交到本地仓库中,且标注信息为“添加忽略文件”

git remote add origin https://github.com/zsl131/spring-boot-test.git:将本地仓库与远程仓库对应起来,只需在第一次初始化时执行此命令

git push -u origin master:将本地仓库暂存区的数据提交到远程仓库的master分支

刷新远程仓库:https://github.com/zsl131/spring-boot-test已经可以看到.gitignore文件了。

添加README

在github上每一个版本库都可以增加一个README.md文件,这个文件的内容将直接显示在版本库首页上,此文件遵循Markdown编码规则。
springboot-study目录下新建文件README.md,内容如下(先随便写点内容,后面再慢慢修改):

# Springboot的学习记录

此代码库主要记录本人对Springboot的学习步骤及思路。

### study01

+ 一个简单的HelloWorld级的应用例子
+ 可正常运行,只是了解Springboot的搭建步骤
+ 使用IDEA开发工具,以Maven方式搭建的Springboot应用

提交README.md

git add README.md
git commit -m "添加README.md文件"
git push

刷新[https://github.com/zsl131/spring-boot-test](https://github.com/zsl131/spring-boot-test)即可看到仓库土首页的变化。

本文章来自【知识林】

你可能感兴趣的:(Github上创建项目)