我正在使用Visual Studio 2017 RC。我使用Git添加了一个源代码控制项目。全局设置中的Default Repository Location
设置为D:\Git
。我提交了文件,但D:\Git
文件夹中没有任何内容。那么repo被保存到哪里?我不认为它会去GitHub或团队服务,因为我从来没有这么做过。
答案 0 :(得分:1)
无论您的代码存储在何处,它都将位于隐藏文件夹(.git)中
答案 1 :(得分:0)
您的Git存储库存储在以.git
结尾的文件夹中。此文件夹可能未显示在Windows资源管理器的D:\Git
中,因为它是系统文件夹。尝试在D:
上搜索*.git
,您应该找到它。
答案 2 :(得分:0)
在命令提示符下,进入你的git工作文件(不是repo本身,而是你工作的克隆目录(例如c:\ mywork)。
输入D:\Git
这将告诉您原点(克隆来自哪里)。如果您的位置确实是var obj = {
key: [1000, 10, 50, 10],
key2: [],
key3: "abc"
};
function isValid(obj, key) {
if (
(typeof obj[key] === 'undefined') || //If there is no property at the given key (first)
(!Array.isArray(obj[key])) || //If the property at the given key is not an array (IE9>=)
(obj[key].length == 0) //If the array at the given key is empty,
) {
return 0;
} else {
return 1; /* or whathever you want */
}
}
console.log(isValid(obj, "key")); //1
console.log(isValid(obj, "key2")); //0
console.log(isValid(obj, "key3")); //0
console.log(isValid(obj, "key4")); //0
,则会确认。
正如其他人提到的,你可能没有看到隐藏文件夹(.git)。