English 中文(简体)
是否应该将盖特存放在家里或Eclipse Workspace?
原标题:Should I store git repository in Home or Eclipse Workspace?

我只是从头到头脑,热切希望奠定一些良好的基础。

缺席,Eclipse想要将我的当地衣物存放在~/git。 我更愿意把所有数据保存在同一工作空间中,以便把数据留在我的工作空间。

我是否应当考虑任何重要的利弊?

我不想做很多的分行——我真的要走倒五花路,主要是为了克服一些不可靠的互联网通关问题。

最佳回答

我也把这个问题转嫁给Gite。 http://wiki.eclipse.org/EGit/User_Guide#Considerations_for_Git_Repositories_to_be_public_in_Eclipse” (尽管并非每个人都同意)是:

  • 前往NOT,其项目低于工作空间名录。

  • 每一组相关单项项目(当然还有更多的档案)都有一个盖特存放处。 “相关项目”的概念符合你的便利[*]。

  • 每个存放处各有一个一级名录,用于每个贾瓦项目。 这意味着,你有<条码>.git/的名录,同样还有项目名录。

例:假定“在全球投资协议之前”你有一间带有多个项目的单体工作空间:

/wk/workspace/.metadata/  
/wk/workspace/projXXX/  
/wk/workspace/projXXXtest/  (related with the previous)
/wk/workspace/projYYY1/     |
/wk/workspace/projYYY2/      >  three related projects
/wk/workspace/projYYY3/     |
/wk/workspace/projZ/        (a project you are not going to version in git)

Then you ll create two empty directories, one for each repository, say:

~/repositories/XXX/ 
~/repositories/YYY/ 

之后,随着新的全球投资安排,你有:

/wk/workspace/.metadata/  
/wk/workspace/projZ/ 

~/repositories/XXX/.git/   (XXX related repository - non-bare)
~/repositories/XXX/projXXX/
~/repositories/XXX/projXXXtest/

~/repositories/YYY/.git/   (YYY related repository - non-bare)
~/repositories/YYY/projYYY1/
~/repositories/YYY/projYYY2/
~/repositories/YYY/projYYY3/

Eclipse(EGit)在你点击Team->Share <>>>在现有项目上做了所有工作,并具体说明(例如)~/repositories/XXX/git/作为储藏处(~/repositories/XXX/,>>>>WorkingDirectory”<>em>,请在“储存库”内<>Path>。

[*] 这里,每个项目组都从Gite之点来看,只是一个存放处的一套名录。 某些相关影响:在上述例子中,你在Eclipse工作空间中从未有过项目的两个不同分支/用途:projYY1。 - 《<>projYY2同时实施;而且,如果你在项目实施过程中,你实际上正在打上整个存放处(项目组)的承诺。

问题回答

<代码>git 你们的工作树应该位于哪里(即你正在工作的现任部门代表欧洲复兴开发银行的档案)。

认为与Gite相比,分行不是目录(而不是特别名称),因此,贵方的工作树将直接成为一个分支内容,而不是几个分行(针对贵处),然后是每个分支的内容。

我通常想把我的项目来源与我的工作空间分开,但这是一个偏好的问题。

我认为,这是在工作空间之外储存树木的良好想法。 这样就可以将项目与不同的存放处分开,但在同一工作空间仍然处理。

此外,如果你将守则放在工作空间之外,你就可以在工作空间之外(在工作文本中)分级安排项目,但仍然看到Eclipse的定额代表。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...