--
You received this message because you are subscribed to the Google Groups "gitblit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gitblit+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Cloning into 'testrepo'...
Checking connectivity... done.
warning: remote HEAD refers to nonexistent ref, unable to checkout.
add a test file, then committed and tried to push:
macdev:testrepo $ git commit -m "test"
[master (root-commit) 0c4031b] test
1 file changed, 2 insertions(+)
create mode 100644 junk
macdev:testrepo $ git push remote
fatal: 'remote' does not appear to be a git repository
fatal: Could not read from remote repository.
changed to push -u (not had to do that before) ..
macdev:testrepo $ git push -u origin master
Counting objects: 3, done.
Writing objects: 100% (3/3), 206 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote: Updating references: 100% (1/1)
To http://ho...@192.168.1.10:8086/r/testrepo.git
* [new branch] master -> master
Branch master set up to track remote branch master from origin.
This seemed to work for this new repo, but trying even -u on push and still get:
macdev:$ git push -u origin
fatal: remote error: Git access forbidden
macdev:$