starting with GIT source control


Install git if you don't have it and verify version.

git --version
git version 1.7.10.2 (Apple Git-33)

git config --global user.name "Uki D. Lucas"
git config --global user.email "uki@CyberWalkAbout.com"


Trying to "Clone" remote repository


$ git clone "ssh://git@xyz.xyz.com/xyz/xyz.git" .
Cloning into '.'...



Warning: Permanently added the RSA host key for IP address '174.129.252.219' to the list of known hosts.
Permission denied (publickey).
fatal: The remote end hung up unexpectedly


Add your public key to the external git repository

cat ~/.ssh/id_rsa.pub | pbcopy

Paste it in a notepad:

ssh-rsa AAAAB..........


If you don't have, you can create your public key using command: 
ssh-keygen -t rsa -C ""




If you added your RSA key successfully, try clone again:


uki:git_test uki$ git clone "ssh://zzz@zz.zzz.com/zzz/zzzz.git" .
Cloning into '.'...
remote: Counting objects: 166, done.
remote: Compressing objects: 100% (77/77), done.
remote: Total 166 (delta 51), reused 166 (delta 51)
Receiving objects: 100% (166/166), 375.74 KiB | 467 KiB/s, done.
Resolving deltas: 100% (51/51), done.
uki:git_test uki$ 



Initialize Local Git Repo:



uki:~ uki$ cd /Users/uki/.../.../git/..._git_repo 
uki:local_git_repo uki$ git init
Initialized empty Git repository in /Users/uki/..._git_repo/.git/



For GitHub

curl -s -O http://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain

uki:~ uki$ which git
/usr/bin/git

sudo mv git-credential-osxkeychain /usr/local/git/bin/

git credential-osxkeychain




As an Amazon Associate I earn from qualifying purchases.

Maya 3D Tutorials


Video #1


02:17 shelves

view of selected object:
  • hot key: 1 - smoothness: polygons rough
  • hot key: 2 - smoothness: polygons medium
  • hot key: 3 - smoothness: polygons fine
  • hot key: 5 - view object
  • hot key: 6 - ?
  • hot key: 7 - lighting (or black when no lighting)
Scaling of the view:
  • Shift + 2 finger side-slide
03:54 selection tools:
  • hot key "q" Select tool
  • 04:17 lasso select tool
  • hot key "w" Move tool
  • 04:56 hot key "e" rotation tool
Panels:
  • Hypergraph





Hypergraph Panel

09:15 Hotbox


video #2



Hypergraph:
  • 01:26 input and output connections
  • 02:30 Parenting 
  • 03:20and Grouping - select objects + Control g

Video: Non Linear Bend Deformer Maya tutorial.

animations: deformation: http://www.youtube.com/watch?v=tI2zSsKGmQM&feature=related

breast: http://www.youtube.com/watch?v=EVlJKOKknR8&feature=relmfu




As an Amazon Associate I earn from qualifying purchases.

after the OS X v10.8.2 upgrade (Mountain Lion)

problem 1) SVN is missing

$ svn up
-bash: svn: command not found

Downloading svn subversion 1.6.17 here.


“Subversion-1.6.17-1_10.7.x.pkg” can’t be opened because it is from an unidentified developer.

Your security preferences allow installation of only apps from the Mac App Store and identified developers.


Searched App Store for svn.. nothing.


Log in with Apple Developer account here.

Download "Command Line Tools (OS X Mountain Lion)"


After installing the xcode452cltools10_86938211a.dmg package:

$ which svn
/usr/bin/svn

$ svn --version
svn, version 1.6.16 (r1073529)
   compiled Jul 20 2011, 13:37:48



It is still OLD svn, but it will do. :)







As an Amazon Associate I earn from qualifying purchases.

My favorite quotations..


“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.”  by Robert A. Heinlein

"We are but habits and memories we chose to carry along." ~ Uki D. Lucas


Popular Recent Articles