Skip to content

Instantly share code, notes, and snippets.

@zeffii
Last active December 26, 2017 11:08
Show Gist options
  • Save zeffii/187f369e7f75c69fb108 to your computer and use it in GitHub Desktop.
Save zeffii/187f369e7f75c69fb108 to your computer and use it in GitHub Desktop.
addon add-ons rebase upload
  1. find a nice directory
  2. git clone git://git.blender.org/blender-addons-contrib.git

  3. git pull --rebase

  4. git remote set-url origin git@git.blender.org:blender-addons-contrib.git

  5. ssh-keygen

    • this will suggest id_rsa.pub located in /home/zeffii/.ssh , just hit enter.
  6. upload this public key to phabricator ( https://developer.blender.org/settings/panel/ssh/ )
  7. create a private key, download to /home/zeffii/.ssh
  8. git push ( you should have commits ready )

after a while when you come back to the repo you do

  1. git pull --rebase
  2. make your edits
  3. git commit -am 'blablab'
  4. git push --all
  5. your crazy passphrase

check untracked files: git ls-files --others --exclude-standard

@zeffii
Copy link
Author

zeffii commented Jul 13, 2016

on windows.. ssh-keygen comes with git-for-windows it will save key at /c/Users/username/.ssh/. It will make a public key .ssh/id_rsa.pub and an identification .ssh/id_rsa and make a fingerprint.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment