cmd/go: support for branch name on local module root directory in replace directive #26853
Labels
FeatureRequest
Issues asking for a new feature that does not need a proposal.
FrozenDueToAge
modules
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
WaitingForInfo
Issue is not actionable because of missing required information, which needs to be provided.
Milestone
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
N/a - working with tip.
What operating system and processor architecture are you using (
go env
)?Currently the replace directive is specified as:
As @mvdan and I were just discussing, when working on a mono-repo with multiple submodules and dependencies between those modules, changes to the submodules will need to be sequenced in such a way that it results in separate commits in the remote VCS.
One way of achieving this sequencing is via separate local branches (that ultimately get merged/cherry-picked/whatever on the remote).
Which raises the question of whether we could/should support a replace directive to a local directory which can also accept a branch name (else the local branch changes would need to be pushed to a remote repo to enable a branch specification, i.e. we can't fully develop offline).
One further nuance would be that a local
directory@branch
specification would not resolve to a commit, and instead would always refer toHEAD
(or equivalent)I realise this creates an ambiguity with the current
old[@v]
semantics (because the absence of version on the "old" portion of a replace indicates it will be a filepath), so just wanted to float the idea first./cc @rsc @bcmills
The text was updated successfully, but these errors were encountered: