Rez troubleshooting

From wikinotes

rez-build

override build directory

Useful if you're building from a network share.

set REZ_BUILD_DIRECTORY=C:\Users\willjp\Desktop\tmp\build
rez-build


rez-release

  • git repo must be current, and without changes
  • git repo-top must be accessible (if using submodules, must have the top-most level .git directory)

dirty git status on windows

avoid permissions changes:

git config --global core.filemode false
git config core.filemde false

# after cloning, you can change filemode without it being synchronized to repo. 
# if still enabled, manually delete the line
git config --edit

.gitattributes to skip line-ending changes

* eol=lf

github sshkey

If your gitconfig is in the format of github.com:<user>/<project>, then you'll need to setup your sshkey.

(check using git config --edit)

Host gitbox.com
    HostName       gitbox.com
    IdentityFile   ~/.ssh/github_willjp
    User           git
    Port           22