Tagged Questions
5
votes
1answer
69 views
Measuring “closeness” in large source trees
As part of a question I posed earlier about finding the best match between two sources, where one has an active git repo and the other has no git history, I wrote a perl script to find the closest git ...
1
vote
1answer
94 views
Git repository structure and modularity
The team I worked with decided to move away from svn towards git, which is a good thing I believe. I'm in charge of the migration and to re-structure the current svn layout.
What we currently have in ...
0
votes
1answer
47 views
Move folder retrospectively in Git
I forked a repository which had a strange directory structure which I fixed as follows:
Before:
/core/src/com/example/core/Core.java
/simulation/src/com/example/simulation/Main.java
After:
...
-2
votes
1answer
453 views
fatal: could not create leading directories of '/opt/theos': Permission denied [closed]
I tried to install Theos by Dustin Howett at /opt/theos directory on my mac.
But when i typed this command git clone git://github.com/DHowett/theos.git $THEOS on terminal, it's always prompt fatal: ...
1
vote
1answer
164 views
How can I use git-rm and file globbing to remove files from certain directories but not subdirectories of those directories?
The scenario
I'm trying to remove some files from the entire history of a git repository. They all share a couple of common criteria:
They have "settings" in the file name. They may also have ...
7
votes
2answers
176 views
How does Git record (or more likely, represent) file paths and names for its blobs, and then identify renames?
I'm trying to get my head around the way that git manages to 'remember' a file's name and its path, given that it only stores file content within a blob. Is the explanation in link here by Abizem a ...
3
votes
2answers
524 views
How to work with (sub)directory renames in Git?
I'm looking at using Git for local developer VCS support (this is for multi-diciplinary development).
Previous practice was that the top level directory would be renamed (and a zip copy kept) for ...
1
vote
2answers
5k views
Where is the Git Repository Path created?
When one creates a NEW repository with Git, does the path where the .git subdir is added have to be the SAME one as the path where the project files are (i.e. the files to be managed by Git)? Another ...
3
votes
1answer
339 views
What is the best way to handle configuration files with git?
Say my application has a configuration files in plain-text. They contain some sensitive information which is required to test the application in my dev environment. I use different OSes to access and ...