atlassian-fisheye

How to remove an entry with null sha1 in a Git tree

China☆狼群 提交于 2019-11-27 23:09:11
I have inherited of a git repository with a null sha1 for a commit entry in a tree, preventing FishEye to index the repository. $ git fsck Checking object directoriies: 100%(256/256), done. warning in tree db22a67df70dc4ff90ec4cd666da91e9c2cb0d9: contains entries pointing to null sha1 Checking objects: 100% (416532/416532), done. Checking connectivity: 416532, done. Looking for the given tree give me the following result: $ git ls-tree db22a6 100644 blob e615f18b55a39f2719112ce209c2505dd92d8e75 .gitignore 100644 blob ac852f06c5a04420356c1d5efca44d9a864e78b0 .project 160000 commit

How to remove an entry with null sha1 in a Git tree

青春壹個敷衍的年華 提交于 2019-11-26 21:23:31
问题 I have inherited of a git repository with a null sha1 for a commit entry in a tree, preventing FishEye to index the repository. $ git fsck Checking object directoriies: 100%(256/256), done. warning in tree db22a67df70dc4ff90ec4cd666da91e9c2cb0d9: contains entries pointing to null sha1 Checking objects: 100% (416532/416532), done. Checking connectivity: 416532, done. Looking for the given tree give me the following result: $ git ls-tree db22a6 100644 blob

Git SSH authentication

蓝咒 提交于 2019-11-26 09:01:40
I have Debian, Fisheye and Git on my server. My git repos are managed by Fisheye. There is no authentication at the Fisheye part. All authentication procedures are managed by git. I would like to use SSH authentication, so that I do not need to provide username and password as I push my changes to the server. I know how to create an rsa key, but where do I copy my public key at the server? VonC The key part of the article " Git on the Server - Setting Up the Server " is: you need to add some developer SSH public keys to the ~/.ssh/authorized_keys file for that user. Let’s assume you’ve

Git SSH authentication

核能气质少年 提交于 2019-11-26 03:25:40
问题 I have Debian, Fisheye and Git on my server. My git repos are managed by Fisheye. There is no authentication at the Fisheye part. All authentication procedures are managed by git. I would like to use SSH authentication, so that I do not need to provide username and password as I push my changes to the server. I know how to create an rsa key, but where do I copy my public key at the server? 回答1: The key part of the article "Git on the Server - Setting Up the Server" is: you need to add some