1
2
3
4
5
6
7
8
9
title: git
description: git
date: 2023-11-10 15:59:00
update: 2023-11-10 15:59:00
tags:
- 计算机
categories:
- git
swiper_index: 15

Git

Git常用命令

命令名称 作用
git config –global user.name 用户名 设置用户签名
git config –global user.email 邮箱 设置用户邮箱
git init 初始化本地库
git status 查看本地库状态
git add 文件名 添加到暂存区
git commit -m “日志信息” 文件名 提交到本地库
git reflog或者git log 查看历史记录
git reset –hard 版本号 版本穿梭

分支操作

命令名称 作用
git branch分支名 创建分支
git branch -v 查看分支
git checkout 分支名 切换分支
git merge 分支名 把指定的分支合并到当前分支上