2. 开发语言

2.1. PYTHON

2.1.1. 简易HTTP服务器

python -m SimpleHTTPServer 8000

2.2. Git

2.2.1. Switching remote URLs from HTTPS to SSH

  1. Open Git Bash.

  2. Change the current working directory to your local project.

  3. List your existing remotes in order to get the name of the remote you want to change.

    git remote -v
    origin  https://github.com/USERNAME/REPOSITORY.git (fetch)
    origin  https://github.com/USERNAME/REPOSITORY.git (push)
    
  4. Change your remote’s URL from HTTPS to SSH with the git remote set-url command.

    git remote set-url origin git@github.com:USERNAME/OTHERREPOSITORY.git
    
  5. Verify that the remote URL has changed.

    git remote -v
    
  6. Verify new remote URL

    origin  git@github.com:USERNAME/OTHERREPOSITORY.git (fetch)
    origin  git@github.com:USERNAME/OTHERREPOSITORY.git (push)