社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
Py学习  »  Git

git日志:提交的意义是什么。。。††(原产地/分支机构名称)

rzlvmp • 3 年前 • 1308 次点击  

我在运行时有这个输出 git log

commit 9211...11c39 (HEAD -> branchname1, origin/branchname1, origin/HEAD)
Merge: 2...d f...a
Author: UserName <thename@example.com>
Date:   Thu Mar 17 02:11:14 2022 +0900

    Merge pull request #111 from org/feature_branch

    Blah blah blah

commit 3211...11f34 (origin/feature_branch)
Author: UserName <thename@example.com>
Date:   Thu Mar 17 02:05:43 2022 +0900

    bug fix

commit 3ad1...1aed4
Merge: 50...bc 0a...88
Author: UserName <thename@example.com>
Date:   Wed Mar 16 03:26:17 2022 +0900

    Merge pull request #110 from org/feature_branch

    blah blah blah 

commit a3ee...3a5b6 (origin/feature_branch)
Author: UserName <thename@example.com>
Date:   Thu Mar 3 14:25:00 2022 +0900

    bug fix

某些提交只有提交ID: commit 3ad1...1aed4 ,但其中一些提交有 (origin/feature_branch) 附加

这是什么意思 (起源/特征/分支) 附加

这不是我的承诺,所以我不清楚这里做了什么,以及为什么承诺不同。

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/129100
 
1308 次点击  
文章 [ 1 ]  |  最新文章 3 年前
Tom
Reply   •   1 楼
Tom    3 年前

它向您展示了其他分支的提示也在该提交中。

假设您在master上,然后在该位置创建三个新分支(但不添加任何提交)。您将有4个分支,它们的提示都在同一时间提交。