git
Typical github steps moving in a new repository
Global setup: Set up git git config –global user.name “Dave Parizek” git config –global user.email dude@wherever.com Next steps: mkdir UAC cd UAC git init touch README git add README git commit -m ‘first commit’ git remote add origin git@github.com:BioComputing/UAC.git git push -u origin master Existing Git Repo? cd existing_git_repo git remote add origin git@github.com:BioComputing/UAC.git git [...]
git insufficient permission for adding an object to repository database ./objects
strangely, I had been pushing to this repository for weeks no problems. Then one day I get the error message for the title above: $git push Counting objects: 9, done. Delta compression using up to 2 threads. Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 506 bytes, done. Total 5 (delta 2), reused 0 [...]
