|
When's the best time to create the trunk, branches and tags directories?
I have executed svnadmin create --fs-type fsfs /home/firefli/web/projects/subversion and have myself a blank repo. If I create, say, the trunk directory using svn mkdir file:///home...
Started by Matt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Checkout of a new repository, I create and add the three directories - tags, trunk, and branches directories and commit that at once pushing it to revision 1 (We have a bash script automate all.
|
|
I'm using SVN 1.6.3 and TortoiseSVN 1.6.6. Periodically when I do an update from the root of my project, SVN fails to pickup a newly added directory (added by a co-worker). I've verified the revision number is correct and can even see the new directory...
Started by Ben on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you confirm that the directories you're expecting are indeed in the repository?
svn ls <repository-url>
On the parent directory of the directories you're expecting to be added?
When I update a working copy....
Not far behind.
|
|
I have a project with the following structure:
/. /src /project1 /bin /obj /project2 /bin /obj /tools /tool1 /bin
What can I add to my .git/info/exclude to ignore all bin/obj directories under "src"? I don't want to explicitly specify each project name...
Started by TheDeeno on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's quick test shell script showing the ignore rule and bin directories further down the hierarchy after running this script:
#!/bin/sh mkdir/testfile touch src/subdir/proj/bin/testfile
The ....
And bin directories futher down the tree.
|
Ask your Facebook Friends
|
I'm fairly new to CURL and I was able to fetch individual files like this:
$c_session = curl_init(); curl_setopt ($c_session, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($c_session, CURLOPT_URL, $uri); curl_setopt ($c_session, CURLOPT_TIMEOUT, '12'); $content...
Started by gAMBOOKa on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If the server you are connecting to is , you need to screen scrape = new SimpleXMLElement($stringfromcurl); foreach ($x->xpath('//a') as $node) { curl_fetch_href($x.
Are configured to show empty directories.
|
|
I'm using Symphony CMS which as default has a mod_rewrite that rewrites all directories.
However, I need it to ignore the directories "test" and "transfer" and all their subdirectories.
Any help?
Started by dougoftheabaci on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Place a new .htacess access files in each of your two directories, and then place the following.
|
|
I'm new to linux and working with git. I have a directory (code) with a dozen sub directories (git repositories).
I want two commands I can run to
Get the current status of all repositories. git pull new changes for all repositories. I know this is probably...
Started by Kyle West on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
You can tell it to search only for directories ( -type d ) and to search status on all directories in your current working directory, do
find -type d -maxdepth 1 -exec git.
Try the find (1) command.
|
|
This method works to get the files, directories and sub-directories and their contents, UNLESS one of the sub-directories happens to be empty.
public static IEnumerable<FileSystemInfo> GetAllFilesAndDirectories ( string dir ) { DirectoryInfo dirInfo...
Started by Adam Kane on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://support.microsoft.com/kb/303974
I realize this isn't an answer in this directory: return it currentDirectory = Path.GetDirectoryName(file); yield return new DirectoryInfo(currentDirectory....
To recursively read files/directories.
|
|
I'm trying to reset permissions on user directories and having a bit of trouble with the last step of my script. My script basically takes ownership of the entire user directory, resets the permissions on all files and folders for the directory, explicitly...
Started by pk on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
The contents of the top-level "E:\Home Directories" folder, for example, consider the following permission) TAKEOWN /f "E:\Home Directories\%userDir%" /r /d y ICACLS "E:\Home Directories\%userDir%" /reset /T ICACLS "E:\Home Directories....
|
|
Hi,
I have seen plenty of apps that wipe free space on a disk (usually by creating a file that is as big as the remaining space) or defragment a file (usually by using the MoveFile API to copy it to a new contiguous area).
What I have not seen however...
Started by Synetech inc. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
If you can find early edition from fdrlab, Undelete Plus, version 2.8.2.0 or earlier, it has "Clean Drive" that deletes Directory entries, nice program, newer editions dropped that feature
tl;dr version -- No, I don't know of a specific utility....
|
|
How does Windows with NTFS perform with large volumes of files and directories?
Is there any guidance around limits of files or directories you can place in a single directory before you run into performance problems or other issues? e.g. is a folder ...
Started by James Newton-King on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's some advice from someone, then what I would have to do is 1) ... .
However, if you're accessing for performance degradation of directories with large number of entries.
Large numbers of directories/files doesn't seem to be an issue.
|