Hello, I am using Sage 9.2 compiled from source on WSL (Ubuntu on Windows 10).
I'm trying to pull changes from an updated ticket remotely using git trac. I have configured git trac from the developer's guide "Collaborative Development with Git-Trac", following the steps there and also from the "Git-Trac Integration" README. I notice that my trac fetch URL looks different from that on the developer's guide. Things look good until I try to checkout the ticket when I receive a permission error. I notice it is a publickey error, but I have already added a public key to my trac account. git remote versions ***************************************** git remote -v origin git://trac.sagemath.org/sage.git <https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Ftrac.sagemath.org%2Fsage.git&data=04%7C01%7Cmeersphi001%40uky.edu%7C53fce00a5fa844b0a29b08d8d2026ab7%7C2b30530b69b64457b818481cb53d42ae%7C0%7C0%7C637490255109326250%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=bDVoJ5jKghTfv0tKOrpBpA9qwIl%2FEI%2FouMI52fel8T4%3D&reserved=0> (fetch) origin git://trac.sagemath.org/sage.git <https://nam04.safelinks.protection.outlook.com/?url=http%3A%2F%2Ftrac.sagemath.org%2Fsage.git&data=04%7C01%7Cmeersphi001%40uky.edu%7C53fce00a5fa844b0a29b08d8d2026ab7%7C2b30530b69b64457b818481cb53d42ae%7C0%7C0%7C637490255109336201%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=ELqyNk30G6cPVTF7nVrtdIRG4UFVOZV%2B85No8gd9njw%3D&reserved=0> (push) trac [email protected]:sage.git (fetch) trac [email protected]:sage.git (push) permission error when trying to checkout ticket ******************************************* git trac checkout 18735 Loading ticket #18735... Checking out Trac #18735 ..... Traceback (most recent call last): File "/home/philipblaine/.local/bin/git-trac", line 17, in <module> cmdline.launch() File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/cmdline.py", line 239, in launch app.checkout(args.ticket_or_branch, args.branch_name) File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/app.py", line 118, in checkout self._checkout_ticket(int(ticket_or_branch), branch_name) File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/app.py", line 146, in _checkout_ticket self.repo.checkout_new_branch(ticket.branch, branch) File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/git_repository.py", line 135, in checkout_new_branch self.git.fetch('trac', remote) File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/git_interface.py", line 340, in meth return self.execute(git_cmd, *args, **kwds) File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/git_interface.py", line 327, in execute popen_stderr=subprocess.PIPE) File "/home/philipblaine/.local/lib/python2.7/site-packages/git_trac/git_interface.py", line 262, in _run raise GitError(result) git_trac.git_error.GitError: git returned with non-zero exit code (128) when executing "git fetch trac u/yzh/hybrid_backend" STDERR: [email protected]: Permission denied (publickey). STDERR: fatal: Could not read from remote repository. STDERR: STDERR: Please make sure you have the correct access rights STDERR: and the repository exists. Any information is greatly appreciated! Thanks. Philip Meersman -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/sage-support/7227cfb7-7680-4a46-ad2e-05248321bf1dn%40googlegroups.com.
