我在命令行或git上做了一些事情,导致我的所有用户目录显示在git master分支中。当我打开命令行时,我会看到<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div>
<p>The number of visitors is : <span id="cntr">0</span></p>
</div>
<script>
function counter_fn() {
var counter = document.getElementById("cntr");
var count = 0;
count = counter.value;
count = count + 1;
counter.innerHTML = count;
}
window.onload = counter_fn;
</script>
</body>
</html>
,当我查看它时,它会显示我的mac上我的整个用户目录的列表。我怎样才能进入正常的命令行并将我的文件从主分支中删除而不删除它们?
答案 0 :(得分:1)
删除.git
文件夹。也许您通过.git
命令创建了git init
文件夹。
$ rm -rf .git