关于github:如何删除我的git仓库中的所有文件并从我当地的git仓库更新/推送?

How can I remove all files in my git repo and update/push from my local git repo?

是否可以删除存储库中的所有文件,并仅使用本地计算机中的文件对其进行更新?原因是,在我的Github中有一些文件是不必要的,所以我想删除这些文件。我不想一个接一个地删除文件,而是想看看是否可以只删除git repo中的所有文件,并只更新/推送本地计算机中的文件。希望它清楚。谢谢。


你可以这样做

1
2
3
4
5
6
7
8
9
10
cd /tmp
git clone /your/local/rep  # make a temp copy
cd rep
git rm -r *                # delete everything
cp -r /your/local/rep/* .  # get only the files you want
git add *                  # add them again
git status                 # everything but those copied will be removed
git commit -a -m 'deleting stuff'
cd /your/local/rep
git pull /tmp/rep          # now everything else has been removed

可能有一条线索…


首先,用git rm -r *从你的GIT存储库中清除所有文件。

在你作出承诺之后:使用git commit -m"your comment"

在你用git push推后

git status核实你的状况

在你可以把你所有的本地文件复制到本地GIT折叠,然后用

你的推荐和你的推荐


是的,如果你做了一个git rm 的话,这些变化也会发生。文件将从休息中消失,以便改变和未来的承诺。

该文件仍可供初步修订。


Delete all elements in reportitory:

ZZU1

然后:

1
$ git commit -m 'Delete all the stuff'

在我的案件中

法国电力公司

创造工作


这是一个简单的过程,跟随着同一个流动,就像任何一个GIT的承诺。

  • 确保你的回复完全到达日期。(EDOCX1&12)
  • 在本地磁盘上浏览您的Repo Folder。
  • 删除你不想要的文件
  • 然后
  • 然后
  • 利润

  • 我试着去做

    1
    git rm -r *

    但在我工作的最后:

    1
    git rm -r .

    我希望这能帮助你。


    Delete all elements in reportitory:

    1
     git rm -r * -f -q

    然后:

    1
     git commit -m 'Delete all the stuff'

    然后:

    1
     git push -u origin master

    然后:

    1
    2
     Username for :"Your Username"
     Password for :"Your Password"

    从上面的工作拷贝看,看一看EDOCX1和(或)EDOCX1[(2)],然后再看一看你要做什么,结果。


    Delete the hidden .gitFolder(that you can locate within your project follder)and again start the process of creating a git reportory using git init