module example.com/mymodule
go 1.14
require (
example.com/othermodule v1.2.3
example.com/thismodule v1.2.3
example.com/thatmodule v1.2.3
)
replace example.com/thatmodule => ../thatmodule
exclude example.com/thismodule v1.3.0
require example.com/mod v0.0.0-replace
replace example.com/mod v0.0.0-replace => ./mod
$ go mod init example/mymodule
go mod edit -exclude=example.com/theirmodule@v1.3.0
go mod init <company-name>/stringtools
require example.com/othermodule v1.2.3
replace example.com/othermodule => example.com/myfork/othermodule v1.2.3-fixed
module example.com/mymodule
require example.com/othermodule v1.2.2
replace example.com/othermodule => example.com/othermodule v1.2.3
replace example.com/othermodule v1.2.5 => example.com/othermodule v1.2.3
require example.com/othermodule v1.2.3
replace example.com/othermodule => ../othermodule
Recommend
Go Publishing a module Publishing steps
Go Developing a major version update Branching for a major release
Go Module release and versioning workflow Publishing breaking API changes
Go Module release and versioning workflow Publishing the first stable version
Go Module release and versioning workflow Publishing the first (unstable) version
Go Module release and versioning workflow Publishing pre-release versions
Go Contribution Guide Miscellaneous topics Sending multiple dependent changes
Go Contribution Guide Miscellaneous topics Set up git aliases
Go Contribution Guide Miscellaneous topics Reviewing code by others
Go Contribution Guide Miscellaneous topics Synchronize your client
Go Contribution Guide Miscellaneous topics Specifying a reviewer / CCing others
Go Contribution Guide Miscellaneous topics Quickly testing your changes
Go Contribution Guide Miscellaneous topics Troubleshooting mail errors
Go Contribution Guide Miscellaneous topics Copyright headers
Contribution Guide Good commit messages
Go Contribution Guide Sending a change via Gerrit Step 5: Revise changes after a review
Go Contribution Guide Sending a change via Gerrit Step 4: Send changes for review
Contribution Guide Sending a change via Gerrit Step 3: Test your changes In the main Go repository
Go Contribution Guide Sending a change via Gerrit Step 2: Prepare changes in a new branch
Go Contribution Guide Sending a change via Gerrit Step 1: Clone the source code
Go Contribution Guide Sending a change via Gerrit Overview
Go Contribution Guide Becoming a contributor Step 4: Install the git-codereview command
Contribution Guide Becoming a contributor Step 0: Select a Google Account
Go Contribution Guide Becoming a contributor Overview
How to Write Go Code Your first program Importing packages from remote modules
How to Write Go Code Your first program Importing packages from your module
How to Write Go Code Your first program
The Go Programming Language Specification System considerations Size and alignment guarantees
The Go Programming Language Specification System considerations Package unsafe
The Go Programming Language Specification Run-time panics
The Go Programming Language Specification Errors
The Go Programming Language Specification Program initialization and execution Program execution
The Go Programming Language Specification Program initialization and execution The zero value
The Go Programming Language Specification Packages An example package
The Go Programming Language Specification Packages Import declarations
The Go Programming Language Specification Packages Package clause
The Go Programming Language Specification Packages Source file organization
The Go Programming Language Specification Built-in functions Bootstrapping
The Go Programming Language Specification Built-in functions Handling panics