命令显示离当前提交最近的标签。 git commit 记录如下 git describe--long// v3-3-g78b4fb5git describe78b4fb5--long// v3-3-g78b4fb5git describe v3--long// v3-0-g2837021git describe c7aef25--long// v2-1-gc7aef25git describe a50612d--long// fatal: No tags can describe 'a50612d8...
0c2b1cf:7位字符表示为最新提交的commit id 前7位 (base) $ git describe --long fatal: No annotated tags can describe '65960acd239410ea8a283f6dfa2b0212abd72548'.
git-describe[1] 根据一个可用的引用,给一个对象易于理解的名字。 git-diff[1] 显示提交之间的变化,提交和工作区,等。 git-fetch[1] 从另一个仓库下载对象和引用。 git-format-patch[1] 为提交电子邮件准备补丁。 git-gc[1] 清理不必要的文件,优化本地仓库。 git-grep[1] 打印符合模式的行。
$ git config --global core.editor"'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin" 确保提供你文本编辑器的可执行文件的正确路径。 顺便说一下,这些 - "-multiInst -notabbar -nosession -noPlugin" - 是在Git启动Notepad++时用于自定义其行为的选项。 如何在Git...
git tag # 列出现有标签 git tag v0gi.1 # 新建标签 git checkout tagname # 切换到标签 git tag -d v0.1 # 删除标签 git push origin :refs/tags/v0.1 # 删除远程标签 git pull --all # 获取远程所有内容包括tag git --git-dir='<绝对地址>/.git' describe --tags HEAD # 查看本地版本信息 ...
命令git push origin --tags推送所有标签 5. 版本回退 HEAD指向的版本就是当前版本,因此,Git允许我们在版本的历史之间穿梭,使用命令git reset --hard commit_id。 穿梭前,用git log可以查看提交历史,以便确定要回退到哪个版本。 要重返未来,用git reflog查看命令历史,以便确定要回到未来的哪个版本。
The bundle.<id>.* keys are used to describe a single item in the bundle list, grouped under <id> for identification purposes. bundle.<id>.uri This string value defines the URI by which Git can reach the contents of this <id>. This URI may be a bundle file or another bundle list...
The purpose of this page is to act as the homapage of the sales development org's handbook presence.
When the repository does not yet have commits, some errors describe that there is no branch: $ git init -b first $ git branch --edit-description first error: No branch named 'first'. $ git branch --set-upstream-to=upstream fatal: branch 'first' does not exist $ git branch -c second...