Git&GitHun 命令合集
基本操作
- git --version 查看git版本信息
- git add 本地库初始化
设置签名
- git config user.name xxx
- git config user.email [email protected] 设置签名(项目级别/仓库级别:仅在当前本地库范围内有效)
- git config --global user.name xxx
- git config --global user.email [email protected] 设置签名(系统用户级别:登录当前操作系统的用户范围)
- git status 查看工作区、暂存区状态
- git add [file name] 将工作区的“新建/修改”添加到暂存区
- git commit -m "commit message" [file name] 将暂存区的内容提交到本
日志查看
- git log 查看提交记录
- git log --pretty=onelie
- git log --onelie
- git reflog
分支操作
- git branch [分支名] 创建分支
- git branch -v 查看分支
- git checkout [分支名] 切换分支
合并分支
- git checkout [被合并分支名] 切换到接受修改的分支(被合并,增加新内容)上
- git merge [有新内容分支名] 执行 merge 命令
远程仓库操作
- git remote -v 查看当前所有远程地址
- git remote add 别名 远程地址
- git push 别名 分支名
- git origin [远程地址]
- git pull 远程库地址别名 远程分支名
- git merge [远程库地址别名/远程分支名]
- git fetch 远程库地址别名 远程分支名
原文地址:https://www.cnblogs.com/yanfei1819/p/9675810.html
时间: 2024-10-10 09:49:41