git使用基础知识
Posted ༺初辰༻
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git使用基础知识相关的知识,希望对你有一定的参考价值。
git 基础知识
svn 和 git 都是源代码版本控制工具,git 是最常用的代码版本管理工具‘
git 服务端常见平台 github、coding.net,码云
单分支个人开发
git 流程图
git 常见命令
命令 | 说明 | 实例 |
---|---|---|
git clone | 克隆仓库到本地 | git clone git@github.com:pbstar/love_wall.git |
git status | 检查工作区状态 | git status |
git diff | 查看工作区文件修改情况 | git diff . |
git add | 添加文件到暂存区 | git add . |
git commit | 提交暂存区文件到版本库 | git commit -m ‘xxx’ |
git log | 查看版本库提交记录 | git log |
git show | 查看某次提交详情 | git show 33113245543fdgdfghfd43hi34digho34 |
git reset | 回退到某个版本 | git reset 33113245543fdgdfghfd43hi34digho34 |
git push | 提交到远程仓库 | git push origin master |
git pull | 下载到本地 | git pull orgin master |
多分支团队开发
流程图
常见命令
命令 | 说明 | 实例 |
---|---|---|
git branch | 查看本地所有分支 | git branch |
git status | 检查工作区状态 | git status |
git checkout | 切换本地分支 | git checkout login |
git checkout -b | 创建新的本地分支 | git checkout -b dev |
git fetch | 从远程仓库获取最新文件到本地 | git fetch |
git merge | 将其他分支分支与当前分支进行合并 | git merge origin/dev |
以上是关于git使用基础知识的主要内容,如果未能解决你的问题,请参考以下文章