我刚刚创建了一个新的github帐户,然后在我的Windows 7上安装了GitHub。
我尝试使用我的命令行但是当我输入git
时说
git不被识别为内部或外部命令。
我检查了PATH,C:\Users\me\AppData\Local\GitHub\PortableGit_c2ba306e536fdf878271f7fe636a147ff3I
可以在该路径中找到cmd
文件夹。
但是,无论如何,要避免哈希我开始使用Git Shell。当我尝试git push
时,我得到了
Warning: Permanently added 'github.com,192.30.252.128' (RSA) to the list of know
n hosts.
ERROR: Repository not found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我是authenticated到gitHub。我还generated SSH密钥,但当我尝试将其添加到gitHub.com帐户中的SSH密钥时,我得到了Key is already in use
。
所以,我不知道发生了什么。我尽我所能,请帮助我。
由于
答案 0 :(得分:1)
您是否已将本地文件夹添加到git环境中,以便让它知道在何处推送它?
通常你会:接下来的步骤取决于您是否拥有要在线存储的新代码或提取回购的代码。
拉是:
推送将是:
答案 1 :(得分:0)
git clone默认情况下将远程添加到您的应用中。您不需要在克隆后手动添加它
git remote add origin git_url
这里的原点只是作为url的别名。您可以随意命名。 这用于将应用程序映射到github。它用作地址。 默认情况下,通过git clone将此地址添加到您的应用程序中。 要检查远程是否已添加到您的应用程序,您可以使用
git remote -v
此外,您可以添加多个远程到单个应用程序ex。 github和heroku都需要不同的url来推送代码。 在此
git remote add origin git_url
git remote add heroku (heroku_url or git_url)
当我们将heroku和git添加到应用程序并运行
时git remote -v
它显示两个远程网址 此外,如果远程URL以https开头,请参阅密码验证,否则使用ssh验证。
答案 2 :(得分:0)
谢谢大家的时间。我做的不是先卸下所有东西。
然后
在gitgub.com中创建一个新帐户
下载并安装桌面版github
在github桌面注销并使用您在github.com上使用的用户名/密码再次登录(请参阅here)
转到github.com,到你的帐户,复制你的普通邮件(gmail)并将其粘贴到github桌面上以“配置git”,将其粘贴到“nonreply git mail”上(参见here)< / p>
打开Git Shell,点击
git config --global user.name "YOUR NAME"
和
git config --global user.email "YOUR EMAIL ADDRESS"
用于配置用户名/电子邮件 (见here)
现在适用于Git Shell
答案 3 :(得分:0)
我遇到了同样的问题,我的建议是在“ git push origin master”之前键入“ git remote set-url origin https://github.com/username/reponame”