How to know which is the default branch #1364
-
How one can one which is the default branch? main/master? One can know about this by iterating all heads and then manually check , but that is also have one issue. How to get the default branch ? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
The default branch is only relevant once, when initializing the repository and git has to decide how to name the only branch in the repository. From there the only questions that can be answered are…
|
Beta Was this translation helpful? Give feedback.
-
Can we rely upon
Will it give the main branch of the repo (main/master or any branch which is main of the repo) |
Beta Was this translation helpful? Give feedback.
-
this seems to work bit verbose tho! |
Beta Was this translation helpful? Give feedback.
this seems to work
repo.remotes.origin.refs.HEAD.ref.remote_head
bit verbose tho!