linux配置git的坑

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux配置git的坑相关的知识,希望对你有一定的参考价值。

参考技术A 一般来说设置git需要设置用户名和邮箱、生成shh公玥、将公玥添加到gitee或github里面。做完这几步就行了。

但是,如果一个gitee(或github)账号想在多个环境下使用git,还按照这样做的话,只会使后添加的公玥生效。我把linux下生成的公玥添加到gitee上之后linux能正常使用git了,但是windows下又不能用了。

正确步骤:在linux下生成ssh公玥之后,复制之前的公玥(从gitee或github或本地C:\Users\lenovo.ssh\id_rsa.pub都可找到),再修改linux下的/root/.ssh/id_rsa.pub,将里面的公玥替换成刚才复制的就行了。

spring cloud config git配置的坑

不多说了,直接上列子
pom.xml的

    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-config-server</artifactId>
    </dependency>

yml配置设置
spring:
application:
name: xxx
cloud:
config:
server:
git:
uri: git地址
searchPaths: 子目录
username: 账号
password: 密码

在启动类上增加
@EnableConfigServer

最重要的是别加profiles 这个属性
加上这个profiles 就会受影响 报错
You need to configure a uri for the git repository

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration‘: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.actuate.autoconfigure.EndpointAutoConfiguration$$EnhancerBySpringCGLIB$$a51a7dda]: Constructor threw exception; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘configServerHealthIndicator‘ defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration.class]: Unsatisfied dependency expressed through method ‘configServerHealthIndicator‘ parameter 0; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘org.springframework.cloud.config.server.config.CompositeConfiguration‘: Unsatisfied dependency expressed through method ‘setEnvironmentRepos‘ parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘defaultEnvironmentRepository‘ defined in class path resource [org/springframework/cloud/config/server/config/EnvironmentRepositoryConfiguration$DefaultRepositoryConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: You need to configure a uri for the git repository

以上是关于linux配置git的坑的主要内容,如果未能解决你的问题,请参考以下文章

Linux Mysql主从配置整理主从配置遇到的坑!

Linux下 nginx+tomcat配置https的总结和遇到的坑

关于maven-resources-plugin配置的隐藏的坑

Linux - Python的虚拟环境配置的坑 virtualenv: error: unrecognized arguments: --no-site-packages

在linux上交叉编译opencv踩过的坑

centos下配置nginx遇到的一些基本的坑