Clone what is to become child projects
git clone git:path/to/repo1
git clone git:path/to/repo2
Move repo contents one level down. By default this should not move hidden files. We don't want to move the .git folder so that is good.
Clone what is to become child projects
git clone git:path/to/repo1
git clone git:path/to/repo2
Move repo contents one level down. By default this should not move hidden files. We don't want to move the .git folder so that is good.
This is my gist |
Grouping Algorithm ('ranked articles') = | |
'input groups' : [{'Property Names'}] <- trivially preprocess 'ranked articles' | |
'set of all graphs' <- 'Identify separate graphs' using 'input groups' | |
groups : {Group} <- empty | |
for each graph in 'set of all graphs' | |
'spanning tree' <- 'Find minimal spanning tree' of graph | |
groups += 'Split spanning tree' 'spanning tree' into groups | |
groups <- merge groups smaller than (g_min : Int) | |
'ranked groups' <- rank groups by average scoring | |
return 'ranked groups' |
<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN"> | |
<HTML> | |
<HEAD> | |
<TITLE> | |
Datasource to DOM mapping | |
</TITLE> | |
</HEAD> | |
<BODY> | |
<b>A list of stuff:</b> | |
<ul id="dest"></ul> |