Created
January 24, 2015 07:39
-
-
Save nutti/978abb60606a85688e21 to your computer and use it in GitHub Desktop.
[Blender] BlenderプラグインをBlender本体に取り込んでもらうまでの流れ ref: http://qiita.com/nutti/items/a63eb404a506c2081be2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> l = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
>>> double_l = [] | |
>>> for i in l: | |
... double_l.append(i * 2) | |
... | |
>>> double_l | |
[2, 4, 6, 8, 10, 12, 14, 16, 18, 20] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> l = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
>>> double_l = [i * 2 for i in l] | |
[2, 4, 6, 8, 10, 12, 14, 16, 18, 20] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd [作業用ディレクトリ] | |
$ git clone git://git.blender.org/blender-addons-contrib.git | |
$ cd blender-addons-contrib | |
$ git submodule update --init --recursive | |
$ git submodule foreach --recursive git checkout master | |
$ git submodule foreach --recursive git pull --rebase origin master | |
$ git pull --rebase | |
$ git submodule foreach --recursive git pull --rebase origin master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "[名前(ニックネーム可)]" | |
git config --global user.email "[連絡先メールアドレス]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git remote set-url origin [email protected]:blender-addons-contrib.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ssh-keygen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd blender-addons-contrib | |
$ cp [作成したプラグイン] . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git add [作成したプラグイン] | |
$ git commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git pull --rebase | |
$ git push |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd [作業用ディレクトリ] | |
$ git clone git://git.blender.org/blender-addons-contrib.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd blender-addons-contrib | |
$ cp [作成したプラグイン] . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git diff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment