我是 GIT 的初学者,不知道这个程序有多强大……我从几个命令中删除了 8 Gb。
我记得我输入了以下几行:
$git config --global user.name "my name"
$git config --global user.email "my email"
$git add *.c
$git commit -m
$git status
然后我看到了很多跟踪和未跟踪的文件,我试图删除它们(从 git 中)。我不知道我会从我的电脑中删除它们。所以我做了以下事情:
$git rm
$git rm --cached *.c
这样我删除了所有跟踪的文件。所以我继续说:
$git clean -f
$git clean -f -d
$git clean -f -x
$git clean -d -x -n
这样我删除了一些未跟踪的文件,系统未使用的文件(我正在使用 Windows)。现在这就是我所拥有的:
$git status
On branch master
Initial commit
Untracked files:
(use "git add <file>..." to include in what will be commited)
.gitconfig
AppData/
Desktop/
Favourites/
NTUSER.DAT
NTUSER.DAT{some characters and numbers}
ntuser.dat.LOG1
ntuser.dat.LOG
$git checkout
fatal: You are on a branch yet to be born
也许我使用了更多命令,但我不记得了!我只想恢复我的旧文件,我将停止使用这个可爱的 Git 软件。