|
Is it a best practice to have my local source tree mirror the server source tree? It seems to me that it should, however my department at work does not do it that way and I find it very confusing. If not, what are scenarios where it makes sense to deviate...
Started by JimDaniel on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Not mirroring the source tree can to get a copy of the tree ....
It's one less "gotcha" in terms of getting a new developer up and running .
I don't know if it's a best practice but I prefer mirroring the source tree too.
|
|
Copying directory from source tree to binary tree. For example: How to copy www to bin folder.
work ├─bin └─src ├─doing │ └─www ├─include └─lib
Thanks.
Started by BianJiang on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
# Copy files from source directory_COMMAND} -E create_symlink ${CMAKE_SOURCE_DIR}/path/to/www ${CMAKE_BINARY_DIR}/path/to/www)
From: http ${CMAKE_CURRENT_SOURCE_DIR} ....
In the copied files, change the configure_file @ONLY argument.
|
|
I am looking for a lean and well constructed open source implementation of a B-tree library written in C. It needs to be under a non-GPL license so that it can be used in a commercial application. Ideally, this library supports the B-tree index to be ...
Started by InSciTek Jeff on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
It's a efficient B-tree library.
Attractive Chaos implement kbtree.h.
I came across this - The WB B-Tree Database for SCM, Java, C#, and C that's a GNU package.
It is using a b-tree internally.
|
Ask your Facebook Friends
|
Is there any utility that works with either Subversion or (preferably) Team Foundation Server's source control system that shows a visual representation of the source tree? e.g. it shows branches (with labels) splitting off, merging back in and so on....
Started by freddy smith on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You mean like the Revision....
You can download the CTP now, and try it out .
See 10-4 Episode 4: No More Parallel Development Pain.
In VS2010 there's a very nice feature for that.
I'm not sure about the present - go to www.codeplex.com and search for TFS .
|
|
Hi,
What are the common things you remove when clearing up your source tree? For instance:
Deleting bin/obj/debug/release directories Removing temporary/cache files, such as ReSharper cache files Removing source control files/directories, such as _svn...
Started by Steve Dunn on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Well we have the version number and to tag the release in the source control, after which I export the new tag from source control and build....
I don't know if that helps at all.
All the _svn/.svn folders from your source tree.
|
|
Is there any Tree-Grid component that is freely available for a C# project?
Started by Jeremy Rudd on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Easy to work with if you can create a data column in your binding source that has the hierarchy.
This one isn't bad : http://www.codeproject.com/KB/tree/TreeWithColumns.aspx
The best one I used.
|
|
Hi,
I have 2 source trees, one is very similar to the other (one is VC6 and one is VS2005). I need a program that can recursively diff the source trees and tell me which files are different.
However I want to be able to define 'how different' the files...
Started by Rich on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Scripting :
Run diffstat on the two tree, then use.
Use two different approach to solve the problem.
|
|
Does anybody know where I can find a utility/application running on Windows that analyses C source and outputs a functional dependency tree?
What I'm looking for is something along these lines:
PrintString->PrintCharacter->PrintByte->Printf
Started by Maltrap on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The open source tool at http://frama-c.cea.fr/ produces the functionality of CTAGS/....
Here's a page with a sample call tree generated by Doxygen a "literate programming" tool at its core.
With Doxygen (if you have Graphviz dot installed).
|
|
We use Visual Studio 2008 and Surround SCM for source control. SCM drops files into each directory named ".MySCMServerInfo" which are user specific data files that shouldn't be checked into source control. They are similar to the .scc files dropped by...
Started by Charles on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
tree and the Pending Checkins view..
|
|
On every project I've worked on, I have one or more tactical build tools. They do verification or checksumming or some specific build-time task. Often these tools are project-specific and written in the project's implementation language.
Q1. Do you have...
Started by Cheeso on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I definitely keep them under source control.
If it's project specific, I put it in a build/tools/ directory of the project tree maintaining a reusable library is more work for me.
On the tool.
|