你如何分隔 git 上每个分支的行?
how do you separate the lines of each branch on git?
我想将分支中的每一行分开,以便于阅读。如何更改一张图片使其看起来像图 2?
问题是:每个远程跟踪分支都是同一历史的一部分,它们是主分支的直接后代。
所以这里看不到 "separate line",除非你 create one by switching to each branch 并推送一个空的人工提交:
git switch register # creates the register branch tracking origin/register
git commit --allow-empty -m "artificial empty commit"
git push -u origin register
但同样,在你的情况下你不应该需要它(线性历史)
我想将分支中的每一行分开,以便于阅读。如何更改一张图片使其看起来像图 2?
问题是:每个远程跟踪分支都是同一历史的一部分,它们是主分支的直接后代。
所以这里看不到 "separate line",除非你 create one by switching to each branch 并推送一个空的人工提交:
git switch register # creates the register branch tracking origin/register
git commit --allow-empty -m "artificial empty commit"
git push -u origin register
但同样,在你的情况下你不应该需要它(线性历史)