JavaScript generic ASN.1 parser (mirror)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add the script I use to keep the GitHub mirror up-to-date.

+10
+10
mirror_to_github.sh
··· 1 + #!/bin/sh 2 + cd `dirname "$0"` 3 + if [ ! -d .git ]; then 4 + git init 5 + git remote add origin git@github.com:lapo-luchini/asn1js.git 6 + fi 7 + touch git-marks1.txt git-marks2.txt 8 + mtn --quiet --authors=git-authors.txt --branches-file=git-branches.txt --import-marks=git-marks1.txt --export-marks=git-marks1.txt git_export | \ 9 + git fast-import --import-marks=git-marks2.txt --export-marks=git-marks2.txt 10 + git push --mirror origin