Solution from https://stackoverflow.com/questions/50714638/install-extension-from-a-specific-repo-branch-on-github
Install vsce: Make sure you have Node.js installed. Then run:
npm install -g vsce
Check out the GitHub repo/branch you want.
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_test/flutter_test.dart'; | |
class MyWidget extends StatefulWidget { | |
@override | |
_MyWidgetState createState() => _MyWidgetState(); | |
} | |
class _MyWidgetState extends State<MyWidget> { |
git rm -r --cached . | |
git add . | |
git commit -m ".gitignore fix" |
.foo: &foo |- | |
echo "Do" | |
echo "Something" | |
echo "Multi-line" | |
.bar: &bar |- | |
echo "Some" | |
echo "More" | |
echo "Actions" |
Solution from https://stackoverflow.com/questions/50714638/install-extension-from-a-specific-repo-branch-on-github
Install vsce: Make sure you have Node.js installed. Then run:
npm install -g vsce
Check out the GitHub repo/branch you want.
set -o allexport | |
source conf-file | |
set +o allexport |