type
status
date
slug
summary
tags
category
icon
password
Git使用快捷查询
本文将总结Git常用命令,方便用户快速查询使用。
Git配置
- 设置用户名:
git config --global user.name "Your Name"
- 设置邮箱:
git config --global user.email "email@example.com"
- 查看配置信息:
git config --list
创建仓库
- 初始化仓库:
git init
- 克隆远程仓库:
git clone <url>
添加/提交文件
- 添加文件到暂存区:
git add <file>
- 添加所有文件到暂存区:
git add .
- 提交暂存区到仓库:
git commit -m "commit message"
分支操作
- 创建新分支:
git branch <branch-name>
- 查看所有分支:
git branch
- 切换到其他分支:
git checkout <branch-name>
- 合并指定分支到当前分支:
git merge <branch-name>
- 删除分支:
git branch -d <branch-name>
远程操作
- 查看远程仓库:
git remote -v
- 添加远程仓库:
git remote add origin <url>
- 推送本地仓库到远程仓库:
git push -u origin <branch-name>
- 从远程仓库拉取最新代码:
git pull
回退操作
- 回退暂存区内容:
git reset
- 软回退commit内容:
git reset --soft HEAD^
储藏操作
- 储藏暂存区内容:
git stash save "stash内容"
- 删除储藏区内容:
git stash clear
- 取出储藏区第一条内容:
git stash apply
更多Git命令请参考 官方文档。
文章推荐
入职第一天必看
- 作者:yingwinwin
- 链接:https://yingwinwin.top/article/3b8b1d2d-c1ab-4694-8fc3-955b68924d7e
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。
相关文章