Git 相关配置

Git 相关配置

git config

[core]
        repositoryformatversion = 0
        filemode = false
        bare = false
        logallrefupdates = true
        symlinks = false
        ignorecase = true
[remote "origin"]
        url = ssh://git@git.******.com:20008/shangxs/project-name.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master
[remote "******"]
        url = ssh://git@git.******.com:20008/project/project-name.git
        fetch = +refs/heads/*:refs/remotes/******/*

你可能感兴趣的:(Tools)