如何在Git中重置我的默认主目录?

时间:2018-06-11 21:48:32

标签: git github git-branch

我正在udacity.com上学习前端开发课程。我正在学习Git而且我被卡住了。

我正在开展一个项目,我认为我正在遵循指示并建立一个名为“包含 - 和 - 目的地”的分支。不知何故,这个分支现在是我的主目录的一部分,但我想使用一个不同的目录来存储我的Git项目,在括号内,它应该是:( master),就像在附加的pic中一样。

任何人都知道如何重置我的默认主目录/分支并摆脱" include-andras-destination"?

我希望udacity-git-course文件夹成为我的主人(是吗?)

如果我输入:

cd /Users/ruxandravasilescu/Desktop/udacity-git-course

我明白了:

ruxandravasilescu (include-andras-destinations) udacity-git-course

我不明白为什么那个分支总是存在!否则,git似乎设置好了。我在Mac上工作。以下是我的终端的一些信息

ruxandravasilescu (include-andras-destinations) ~
$ cd
ruxandravasilescu (include-andras-destinations) ~
$ git init
Reinitialized existing Git repository in /Users/ruxandravasilescu/.git/
ruxandravasilescu (include-andras-destinations) ~
$ pwd
/Users/ruxandravasilescu
ruxandravasilescu (include-andras-destinations) ~
$ git status
On branch include-andras-destinations
Untracked files:
  (use "git add <file>..." to include in what will be committed)

Udacity在Mac上的git设置看起来像这样,这也是我的终端最初的样子:

Image

2 个答案:

答案 0 :(得分:1)

您在主目录中创建了一个git仓库。只需删除它就可以了:

EXTRACTJSONFIELD(payload, '$.Successful%Login')
EXTRACTJSONFIELD(payload, '$.Successful%20Login')
EXTRACTJSONFIELD(payload, '$.[Successful Login]')
EXTRACTJSONFIELD(payload, '$."Successful Login"')

答案 1 :(得分:0)

使用git分支,它们实际上不是您计算机上的目录..在某些时候您输入了

document.getElementById('content').innerHTML = '';



openeditor=function(){


var fileinput = document.querySelector('input[type=file]');
var path = fileinput.value;
path=path.toString()

var fs = require('fs');
fs.readFile(path, 'utf8', function(err, txt) {
  if (err) {
    alert(err)
    return;
  }

  document.getElementById('content').innerHTML=txt
});


}
saveeditor=function(){


var fileinput = document.querySelector('input[id=filesave]');
var path = fileinput.value;

const fs = require("fs")

texto=document.getElementById('content').innerHTML
texto=texto.toString()

    fs.writeFile(path,texto , function (err) {
  if (err) return;
});



}

你可以试试git checkout master,如果是这样的话,可以回到你的repo的主分支。