Re: [git-users] Remove .git folder from Master Repo

2015-11-01 Thread Gergely Polonkai
Hello, the .git folder is the repository itself: it contains the whole history of your app. Removing it will remove the whole repository history, which may or may not be good, depending on your requirement. Also, there's no point ignoring it; it is not checked into the repository because it *is* t

Re: [git-users] When a file was locked by some program, git will work stupidly

2015-11-01 Thread Magnus Therning
On Sat, Oct 31, 2015 at 03:16:32AM -0700, Dayong Xie wrote: > To be specific > In my Unity project, there is a native plugin, and plugin's extension > is .dll, and this plugin is under git version control, when Unity is > running, the plugin file will be locked. If i merge another branch, > which c

Re: [git-users] When a file was locked by some program, git will work stupidly

2015-11-01 Thread Philip Oakley
- Original Message - From: Dayong Xie To: Git for human beings Sent: Saturday, October 31, 2015 10:16 AM Subject: [git-users] When a file was locked by some program, git will work stupidly To be specific In my Unity project, there is a native plugin, and plugin's extensio

[git-users] "Index file" -- what is it?

2015-11-01 Thread Michael
So I'm starting to be aware that the "index file" isn't a file, but effectively a full commit that isn't finalized. Can someone point me to a good explanation of what the index actually is, and is not, so I'm not trying to understand it by trial and error? -- You received this message because

Re: [git-users] Remove .git folder from Master Repo

2015-11-01 Thread Steven Ottz
> > Hi Thanks > > Well for some reason it has added itself to my github repo and I would like to get rid of it but don't know how as per my initial post. Any ideas? -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from t

Re: [git-users] When a file was locked by some program, git will work stupidly

2015-11-01 Thread Dayong Xie
Yes, that's what I want 在 2015年11月1日星期日 UTC+8下午8:26:13,Magnus Therning写道: > > On Sat, Oct 31, 2015 at 03:16:32AM -0700, Dayong Xie wrote: > > To be specific > > In my Unity project, there is a native plugin, and plugin's extension > > is .dll, and this plugin is under git version control, when

Re: [git-users] Remove .git folder from Master Repo

2015-11-01 Thread Gergely Polonkai
How do you know it is added if GitHub does'n show it? GitHub doesn't hide hidden files from its listing (see the .travis.yml file in this repo[1] for an example.) Also note that you can't actually add the .git folder to your history: the command ”git add .git" doesn't do anything. On 2 Nov 2015 0