Skip to content

Tried to remove git style RCs

Latest
Compare
Choose a tag to compare
@marslo marslo released this 18 Sep 07:32
· 161 commits to master since this release

The git configures can solve the URL.InsteadOf problem by using:

  1. Configure:
git config --global url."https://".insteadOf git://
  1. .gitconfig:

    [url "https://"]
    insteadOf = git://
    
  2. Github specified:

    git config --global url."https://github.com".insteadOf git://github.com
    
  3. Another github specified:

    git config --global url."https://github.com/".insteadOf github:
    
  4. Or other way:

    [url "git://anonscm.debian.org"]
    insteadOf = "git://git.debian.org"
    [url "ssh://git.debian.org"]
    pushInsteadOf = "git://git.debian.org"
    

This version will be last version for keep git-style-rc files.