get_repo.sh 233 B

12345678
  1. #!/bin/bash
  2. git clone https://github.com/Microsoft/vscode.git
  3. cd vscode
  4. export LATEST_MS_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
  5. echo "Got the latest MS tag: ${LATEST_MS_TAG}"
  6. git checkout $LATEST_MS_TAG
  7. cd ..