Skip to content
/ JaWE Public

Enhydra JaWE (a.k.a. Together Workflow Editor)

Notifications You must be signed in to change notification settings

Shoobx/JaWE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Enhydra JaWE (a.k.a. Together Workflow Editor)

Enhydra JaWE is an Open Source workflow editor that operates on XPDL files.

This repository is a git mirror of the Subversion repository on SourceForge: https://sourceforge.net/projects/jawe/

This mirror has been created with the following sequence of commands:

echo "sasaboy = Sasa Bojanic <[email protected]>" > authors-transform.txt
git svn init --trunk=trunk --tags=tags --tags=tags/releases --branches=branches \
             svn:https://svn.code.sf.net/p/jawe/code/
git config svn.authorsfile authors-transform.txt
git svn fetch

git remote add origin [email protected]:Shoobx/JaWE.git

# Create release branches pointing to the SVN ones
git branch -r | grep origin/twe | sed -e 's#.*/##' | while read br; do echo git switch $br; done

# Create tags
git for-each-ref --format="%(refname:short) %(objectname)" refs/remotes/origin/tags \
|  cut -d / -f 3- | while read ref; do git tag $ref; done
git tag -d releases

git push origin --all
git push origin --tags