-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME
More file actions
45 lines (30 loc) · 1.03 KB
/
README
File metadata and controls
45 lines (30 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Vex Projects
Copyright Mohit Muthanna Cheppudira 2010
Everything in this repo is distributed under the MIT license.
Contents:
vextab/ - A parser for the VexTab (http://vexflow.com/vextab) tablature language
js/ - Some JavaScript support stuff that is mostly unused
py/ - Some Python support stuff that is mostly unused
This repo also contains some support code that are licensed by third
parties. Some of these include:
- jQuery (jquery.com)
- Raphael (raphaeljs.com)
- qUnit (jquery.com)
-------------------------------------------------------------
This repo is setup as a git submodule:
$ git submodule add [email protected]:0xfe/vex.git
After pushing changes here, go up to the superproject, and:
$ git submodule update
Submodule setup:
mkdir vex
cd vex
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin [email protected]:0xfe/vex.git
git push origin master
Existing Git Repo
cd existing_git_repo
git remote add origin [email protected]:0xfe/vex.git
git push origin master