Table of Contents
Question content
Solution
Home Backend Development Golang Golang, problem of moving from local import path to remote import path

Golang, problem of moving from local import path to remote import path

Feb 09, 2024 am 08:27 AM
golang development

Golang, problem of moving from local import path to remote import path

php editor Baicao will answer your question about moving from a local import path to a remote import path in Golang. In Golang development, we often encounter the situation of moving from the local import path to the remote import path, especially when multiple people collaborate on development or project migration. This article will detail how to handle this issue correctly to ensure your code runs smoothly. Let’s take a look!

Question content

I have just started breaking my application into different repositories. Like many people, I'm going through the trouble of dealing with Go and changing repositories. But there are many questions and answers to these questions, so I won't ask them here.

Instead, I have a simple question but I can't understand it. All my modules, since it's a big application, are just local references. For example core/validate etc.

Move content into multiple repositories. Seemed to cause problems with local references, so I changed the path to the remote path, e.g. gitlab.com/<group>/core.git/validate</group> as several Q&A suggested.

However, this will cause a problem, if gitlab.com/<group>/core.git/config</group> refers to gitlab.com/<group>/core. git/validate</group> does not mean that gitlab.com/ <group>/core.git/config</group> now points to pck/mod/gitlab.com/... Are some of the content either pointing to the remote server, or anywhere but each other, like when they only have relative paths like core/validate? When I change them it looks like this because my IDE (GoLand) shows the reference not found.

I haven't tried doing go mod init and rebuilding the mod from scratch, but go mod tidy doesn't work and I don't know if I have to go as well. It's fine to change the remote path in work, but now I just can't find the import shown in the IDE.

It seems that if you use a remote reference to make changes you make in your code while developing, you have to push the changes so that it is where the reference points and maybe do go get Change to reference local remote path, this seems like a bad way of developing and therefore can't be correct.

So, how do these remote paths work with development, what am I missing?

Solution

There are several concepts that can cause confusion.

A module is a collection of packages. You can name your module "mymodule" and then all packages under "mymodule" will be named "mymodule/pkg1", "mymodule/pkg2/otherpkg", etc.

Then you have the import path of the package. The import path shows the location of the package. For example, if your source code is in "mymodule/pkg1" and you import "mymodule/pkg2", then this is a reference to the package under the same module.

Now assume you have another module named "othermodule" on "github.com/mygroup/othermodule". You import a package in this module as "github.com/mygroup/othermodule/pkg1". If "othermodule/pkg1" references "othermodule/pkg2", then it still imports "othermodule/pkg2" because it is in the same module. But from "mymodule/pkg1" you import it as "github.com/mygroup/othermodule/pkg2".

The Go module system uses version references from other modules. When you include a package from a module, the specific version of the module is added to go.mod. If you push new changes to the module, you must update the reference to include those changes. That's why it's best not to split a tightly coupled project into multiple modules.

If you want to develop multiple modules together, use the "replace" directive to use a local copy of the module instead of pointing to the version on the repository.

The above is the detailed content of Golang, problem of moving from local import path to remote import path. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Develop powerful desktop applications with Golang Develop powerful desktop applications with Golang Mar 19, 2024 pm 05:45 PM

Use Golang to develop powerful desktop applications. With the continuous development of the Internet, people have become inseparable from various types of desktop applications. For developers, it is crucial to use efficient programming languages ​​to develop powerful desktop applications. This article will introduce how to use Golang (Go language) to develop powerful desktop applications and provide some specific code examples. Golang is an open source programming language developed by Google. It has the characteristics of simplicity, efficiency, strong concurrency, etc., and is very suitable for

Security challenges in Golang development: How to avoid being exploited for virus creation? Security challenges in Golang development: How to avoid being exploited for virus creation? Mar 19, 2024 pm 12:39 PM

Security challenges in Golang development: How to avoid being exploited for virus creation? With the wide application of Golang in the field of programming, more and more developers choose to use Golang to develop various types of applications. However, like other programming languages, there are security challenges in Golang development. In particular, Golang's power and flexibility also make it a potential virus creation tool. This article will delve into security issues in Golang development and provide some methods to avoid G

Steps and tips for programming with Golang on Mac Steps and tips for programming with Golang on Mac Mar 03, 2024 am 08:30 AM

Title: Steps and techniques for using Golang programming on Mac In the current field of software development, Golang (also known as Go), as an efficient, concise, and highly concurrency programming language, has attracted the attention of more and more developers. use. When programming Golang on the Mac platform, you can use some tools and techniques to improve development efficiency. This article will introduce the steps and techniques of using Golang programming on Mac, and provide specific code examples to help readers better understand and apply. Step 1: Install Gol

Research on the impact and role of Golang on the development of blockchain Research on the impact and role of Golang on the development of blockchain Feb 26, 2024 pm 04:24 PM

Golang (Go language for short) as a programming language has gradually emerged in the blockchain field in recent years. Its efficient concurrent processing capabilities and concise syntax features make it a favored choice in blockchain development. This article will explore how Golang helps the development of blockchain and demonstrate its superiority in blockchain applications through specific code examples. 1. Golang’s advantages in the blockchain field: Efficient concurrent processing capabilities: Nodes in the blockchain system need to process a large amount of transactions and data at the same time, and Gola

What programming languages ​​are commonly used by Golang developers? What programming languages ​​are commonly used by Golang developers? Mar 18, 2024 pm 09:06 PM

Golang is an open source programming language developed by Google and is widely used in back-end service development, cloud computing, network programming and other fields. As a statically typed language, Golang has an efficient concurrency model and a powerful standard library, so it is favored by developers. However, in actual development, Golang developers usually need to combine other programming languages ​​for project development to meet the needs of different scenarios. PythonPython is an object-oriented programming language that is concise, clear, and easy to learn.

Go kit framework helps improve Golang API performance Go kit framework helps improve Golang API performance May 07, 2024 pm 03:24 PM

Gokit is a Golang microservice framework that improves API performance through optimized, scalable, maintainable and test-friendly features. It provides a range of tools and patterns that enable users to quickly build performant and maintainable APIs. In actual production, it is widely used in API construction of large platforms such as Netflix, Spotify and Uber, handling massive requests.

Advantages and Disadvantages of Using Golang to Develop Mobile Games Advantages and Disadvantages of Using Golang to Develop Mobile Games Mar 05, 2024 pm 03:51 PM

Advantages and Disadvantages of Using Golang to Develop Mobile Games With the popularity of mobile devices and the continuous improvement of their performance, the mobile game market is becoming more and more popular, attracting more and more developers to join it. When choosing a development language, Golang, as a fast, efficient and easy-to-learn language, attracts the attention of many developers. This article will discuss the advantages and disadvantages of using Golang to develop mobile games, and illustrate it through specific code examples. Advantages: Strong cross-platform: Golang can be compiled into binaries for different platforms

Sharing of practical techniques for replacing spaces in Golang Sharing of practical techniques for replacing spaces in Golang Mar 13, 2024 am 09:15 AM

Title: Sharing practical techniques for replacing spaces in Golang. With the popularity and development of the Internet, program design and development have become more and more important. In the programming process, data processing is a very critical part. When processing text data, you often encounter situations where you need to replace spaces. This article will share how to implement the technology of replacing spaces in Golang and provide specific code examples. Why do I need to replace spaces? Spaces are one of the common special characters in text data. Sometimes we need to replace spaces with other characters or remove spaces.

See all articles