git工具下载连接:https://npm.taobao.org/mirrors/git-for-windows/
Git 基本操作
Git 的工作就是创建和保存你项目的快照及与之后的快照进行对比。
本章将对有关创建与提交你的项目快照的命令作介绍。
Git 常用的是以下 6 个命令:git clone、git push、git add 、git commit、git checkout、git pull,后面我们会详细介绍。
说明:
workspace:工作区
staging area:暂存区/缓存区
local repository:或本地仓库
remote repository:远程仓库
一个简单的操作步骤:
git init - 初始化仓库。
git add . - 添加文件到暂存区。
git commit - 将暂存区内容添加到仓库中。
创建仓库命令
下表列出了 git 创建仓库的命令:
命令 | 说明 |
---|---|
git init |
初始化仓库 |
git clone |
拷贝一份远程仓库,也就是下载一个项目。 |
提交与修改
Git 的工作就是创建和保存你的项目的快照及与之后的快照进行对比。
常用命令:git status,git add,git commit
下表列出了有关创建与提交你的项目的快照的命令:
命令 | 说明 |
---|---|
git add [file.../dir] |
添加文件到仓库 |
git status |
查看仓库当前的状态,显示有变更的文件。 |
git diff |
比较文件的不同,即暂存区和工作区的差异。 |
git commit -m "info" |
提交暂存区到本地仓库。 |
git reset |
回退版本。 |
git reset |
回退版本。 |
git rm |
删除工作区文件。 |
git mv |
移动或重命名工作区文件。 |
提交日志
命令 | 说明 |
---|---|
git log |
查看历史提交记录 |
git blame |
以列表形式查看指定文件的历史修改记录 |
远程操作
命令 | 说明 |
---|---|
git remote |
远程仓库操作 |
git fetch |
从远程获取代码库 |
git pull |
下载远程代码并合并 |
git push |
上传远程代码并合并 |
设置全局用户名和密码
- git config --global user.name "username"
- git config --global user.email "email"
注意:若使用git push命令的时候出现权限问题尝试以下方式解决:
修改项目下.git中的config文件
[remote "origin"]
url = https://github.com/用户名/仓库名.git
改为:
[remote "origin"]
url = https://用户名:密码@github.com/用户名/仓库名.git
GitHub上的快速开发平台
1、Jeecg-boot,前端使用阿里ant-desifn-vue
2、renren-fast,spring-boot,vue,element-ui
3、vue-manager-system适合后台管理
GitHub上的几个开源项目
1、美人鱼
2、微人事
3、bootshiro
4、ooen-capacity-platform
5、V部落
6、悟空CRM
7、paascloud-master
GitHub上的三个电商项目
1、xmall 地址:https://github.com/Exrick/xmall
2、litemall 地址:https://github.com/linlinjava/litemall
3、mall 地址:https://github.com/macrozheng/mall