Questions tagged «git-remote»

git-remote是用于管理跟踪的远程存储库集的命令。

3
完全从Git存储库中删除文件并在GitHub上远程
我不小心添加了一个图像文件夹并提交了。然后,我又提交了一个。然后,我使用删除了这些文件git rm -f ./images并再次提交。 现在,我在该分支(master)中进行了更多提交。在我的头上,我没有该./static/images文件夹。 因此,我的回购规模增加了很多。如何完全清除这些斑点?我也想从我的远程GitHub存储库中删除它。


13
Git推送错误:“来源似乎不是git存储库”
我正在按照此处给出的说明创建Git存储库。一切顺利,直到最后一行: $ git push -u origin master 致命:'origin'似乎不是git存储库 致命:远端意外挂断 我在OS X 10.6.8上使用git版本1.7.11.3 $ git remote -v 什么都不返回 存储库的配置文件: [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true 我不得不使用sudo visudo命令打开sudoers文件,并将以下内容添加到该文件中(在#用户权限规范下): git ALL=(ALL) ALL. 现在,如果我这样做: $ git remote add origin /Volumes/500GB/git-repository/myproject.git 它返回没有错误,但是我在存储库中看不到任何代码(它具有上述目录,例如分支,钩子等) 如果我做: $ git …
69 git  git-remote 
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.