forked from JuhaW/blender_ctools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subtree_add.sh
executable file
·22 lines (19 loc) · 1.32 KB
/
subtree_add.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
git remote add drawnearest '[email protected]:chromoly/blender-EditMeshDrawNearest.git'
git remote add lockcoords '[email protected]:chromoly/blender_lock_coords.git'
git remote add lockcursor3d '[email protected]:chromoly/lock_cursor3d.git'
git remote add mousegesture '[email protected]:chromoly/blender_mouse_gesture.git'
git remote add overwrite_builtin_images '[email protected]:chromoly/blender-OverwriteBuiltinImages.git'
git remote add quadview_move '[email protected]:chromoly/quadview_move.git'
git remote add regionruler '[email protected]:chromoly/regionruler.git'
git remote add screencastkeys '[email protected]:chromoly/blender-ScreencastKeysMod.git'
git remote add updatetag '[email protected]:chromoly/blender_update_tag.git'
git subtree add --prefix=drawnearest drawnearest master --squash
git subtree add --prefix=lockcoords lockcoords master --squash
git subtree add --prefix=lockcursor3d lockcursor3d master --squash
git subtree add --prefix=mousegesture mousegesture master --squash
git subtree add --prefix=overwrite_builtin_images overwrite_builtin_images master --squash
git subtree add --prefix=quadview_move quadview_move master --squash
git subtree add --prefix=regionruler regionruler master --squash
git subtree add --prefix=screencastkeys screencastkeys master --squash
git subtree add --prefix=updatetag updatetag master --squash