常用 git 基础命令
由于版本的不同,列出常用几个方法:
- git help
- git help <command 命令>
如:git help cleanNAME git-clean - Remove untracked files from the working tree SYNOPSIS git clean [-d] [-f] [-i] [-n] [-q] [-e <pattern>] [-x | -X] [--] <path>... DESCRIPTION Cleans the working tree by recursively removing files that are not under version control, starting from the current directory. Normally, only files unknown to Git are removed, but if the -x option is specified, ignored files are also removed. This can, for example, be useful to remove all build products. If any optional <path>... arguments are given, only those paths are affected. OPTIONS -d Remove untracked directories in addition to untracked files. If an untracked directory is managed by a different Git repository, it is not removed by default. Use -f option twice if you really want to remove such a directory. -f, --force If the Git configuration variable clean.requireForce is not set to false, git clean will refuse to delete files or directories unless given -f, -n or -i. Git will refuse to delete directories with .git sub directory or file unless a second -f is given. -i, --interactive Show what would be done and clean files interactively. See "Interactive mode" for details. -n, --dry-run Don't actually remove anything, just show what would be done. -q, --quiet
- git help -a && git help -g
- git help 命令行 git help <concept>概念(git help -g :常见的Git指南)'git help -a'和'git help -g'列出了可用的子命令和一些概念指南。 请参阅“ git help <命令>”或“ git help <概念>”以了解特定的子命令或概念。
- usage
git [--version] [--help] [-C <path>] [-c <name>=<value>] [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path] [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare] [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>] <command> [<args>]
- git config --global credential.helper store记住密码
- git config user.name xxx配置帐号
- git config user.email xxx配置邮箱
- git pull合并
- git push提交
- git add .添加
- git merge --abort恢复
- git reset merge合并重置
- git commit -m “xx”提交本地
- git checkout origin xxx切换分支
- git branch 查看当前分支
- git diff
可以查看当前没有add 的内容修改(不在缓冲区的文件变化- git diff --cached
查看已经add但没有commit 的改动(在缓冲区的文件变化)- git diff HEAD
是git diff && git diff --cached 两条命令的合并- git tag -d v1.2.1
删除指定tags- git tag v2.0.6
创建 tags (基于commit ,请先commit 然后创建)- git push origin --tags
提交tags- git tag -a v0.9 9ff91da
为已经提交的代码打上tag,下面命令使用到
的乱码(注意一般是日志的第一行也就是最新一次提交的编码)
1git log --oneline --decorate --graph
- git remote update origin --prune Git更新远程分支列表
- 仓库备份:
1git clone --mirror <ssh> (git@git.coding.net:yjwb/magento2-mc.git)
备份还原:
1git clone <ssh:name库名称.git> (magento2-mc.git)
备份更新:
1git --git-dir=/<目录>/<ssh:name 库名称.git>(magento2-mc.git) remote update
- 克隆祼仓库:
1git clone --bare <ssh> (git@git.coding.net:yjwb/magento2-mc.git)
- git reset --hard 还原上次
- git reset --hard HEAD 还原指定commit
- git reflog 查看commit历史
- git reset HEAD . 撤销本地所有add操作
- git reset HEAD -name 撤销add操作的某个文件或目录:
- git clean -d -fx 清除本地没有被add的内容
- 更新 git 子版本库管理:git submodule update;
- 添加 git 子版本库管理;
1、git submodule add 子树GIT地址 目录/+项目名 ;
2,项目会自动生成 .gitmodules 文件;
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用