Questions tagged «github»

4
SSH在未设置密码短语的情况下在公用密钥上要求密码短语
我已经在服务器上使用公钥认证已有一段时间了,但是在尝试连接github的新“客户端”上遇到问题。我已经阅读了许多线程以验证我的权限设置正确,并为github生成了一个新密钥。我面临的问题是,即使我没有设置密码,ssh仍要求输入密码。我什至重新制作了密钥,以确保100%确保没有输入密码。 ssh -vvv提供以下相关输出: debug1: Offering public key: /home/me/.ssh/github.pub debug2: we sent a publickey packet, wait for reply debug3: Wrote 368 bytes for a total of 1495 debug1: Remote: Forced command: gerve mygithubusername c3:71:db:34:98:30:6d:c2:ca:d9:51:a8:c6:1b:fc:f7 debug1: Remote: Port forwarding disabled. debug1: Remote: X11 forwarding disabled. debug1: Remote: Agent forwarding disabled. debug1: Remote: …

2
Github从现有克隆中添加一个存储库作为fork
所以我有一个git存储库,是从ghithub的上游源克隆的。我对此做了一些更改(未提交且在master分支中)。我要做的是将更改作为新分支推送到我的github页面上,并使github仍将其视为fork。 那可能吗?我是git和github的新手。我的问题甚至有意义吗? 我能想到的最简单的方法(我敢肯定这是最普遍的方法)是在github上存储仓库。在本地将其克隆到其他目录。添加上游原始存储库。在该新的分支存储库中创建一个分支。手动将我的代码更改复制到新的本地存储库中。然后将其推回我的github。 这是一个常见的用例吗,有一种更简单的方法而无需复制目录吗? 我想我在这里问的不是SO,因为我在Linux上使用命令行git,这里的人给出了更好的答案imo =]

3
使用git获取特定分支
我想使用Xilinx Wiki中所述的git 从master-next分支下载源代码。 我尝试了这个: #git clone git://github.com/Xilinx/u-boot-xlnx/tree/master-next.git Initialized empty Git repository in /home/Hannan/master-next/.git/ fatal: remote error: Xilinx/u-boot-xlnx/tree/master-next is not a valid repository name Email support@github.com for help 即使失败了: # git clone git://github.com/Xilinx/tree/master-next/u-boot-xlnx.git Initialized empty Git repository in /home/Hannan/u-boot-xlnx/.git/ fatal: remote error: Xilinx/tree/master-next/u-boot-xlnx is not a valid repository name Email support@github.com …
19 git  github 


2
仅为Github添加SSL证书(并非ca-certificates软件包中的所有证书)
通过HTTPS访问Github时出现以下错误: error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none 这是因为我在中没有任何证书/etc/ssl/certs/。我知道如何解决这个问题。我可以ca-certificates从Debian仓库安装软件包。但是问题是,这将安装我不一定要接受/信任的所有证书(数千个)。 如何仅为Github安装证书? 子问题/子问题 在ca-certificates已经安装了软件包且git可以工作的另一台计算机上,我注意到其中的某些证书/etc/ssl/certs/是每个文件一个证书,而其他证书是一个文件中的多个证书。包含Github证书的特定文件包含/etc/ssl/certs/ca-certificates.crt150多个其他证书: $ grep 'BEGIN CERTIFICATE' /etc/ssl/certs/ca-certificates.crt | wc -l 159 如何找到这159张证书中的哪一张是我需要的?(除了蛮力外-将文件切成两半,然后检查两半,然后重复while n > 1)。
13 git  ssl  certificates  github 

3
直接从本地Linux Git远程更改Github存储库中的目录名称吗?
这是我的Git存储库: https://github.com/benqzq/ulcwe 它具有一个名为dir的目录local,我想将其名称更改为另一个名称(例如,从local到xyz)。 通过GitHub GUI手动更改它是一个噩梦,因为我必须分别更改每个文件的目录名称(不管,信不信由你,GitHub尚未包括“目录重命名”功能)。 安装Git之后,我尝试了以下命令: git remote https://github.com/benqzq/ulcwe && git mv local xyz && exit 虽然没有提示输入GitHub密码,但确实收到此错误: fatal: Not a git repository (or any parent up to mount point /mnt/c) Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). 我知道Git的全部目的是下载一个项目,进行更改,测试,然后推送到托管提供程序(在本例中为GitHub),但是仅更改目录,我希望直接进行操作。Git甚至可能吗? 我应该使用其他程序吗?

5
无法从github wget,sslv3握手错误
我们有一个脚本可以从github下载mod安全,最近开始失败。服务器运行CentOS 6,但RHEL 6可能有相同的问题。输出为: # wget https://github.com/downloads/SpiderLabs/ModSecurity/modsecurity-apache_2.7.1.tar.gz --2014-07-22 18:49:46-- https://github.com/downloads/SpiderLabs/ModSecurity/modsecurity-apache_2.7.1.tar.gz Resolving github.com... 192.30.252.129 Connecting to github.com|192.30.252.129|:443... connected. HTTP request sent, awaiting response... 302 Found Location: https://cloud.github.com/downloads/SpiderLabs/ModSecurity/modsecurity-apache_2.7.1.tar.gz [following] --2014-07-22 18:49:47-- https://cloud.github.com/downloads/SpiderLabs/ModSecurity/modsecurity-apache_2.7.1.tar.gz Resolving cloud.github.com... 54.230.99.219, 205.251.219.190, 54.230.97.212, ... Connecting to cloud.github.com|54.230.99.219|:443... connected. OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure Unable to establish SSL connection. …
10 centos  wget  github 

4
git archive致命:协议不支持该操作
我可以git clone这样... git clone https://github.com/stackforge/puppet-heat.git ...没有问题。但是我想排除克隆附带的所有git meta东西,所以我想我会用,git archive但出现此错误: $ git archive --remote=https://github.com/stackforge/puppet-heat.git fatal: Operation not supported by protocol. 有人知道我为什么或做错了吗?
8 git  github 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.