1
vote
3answers
54 views
Making cloned repository in git the master
I have two git repositories:
report.git (Master on remote location)
cloned.git (Local)
I lost report.git. I have the cloned.git. I want to clone other repositories from this cl …
0
votes
0answers
44 views
can’t install mercurial on mac os x [closed]
Hey,
I can't install mercurial. I am getting this error -
---> Computing dependencies for mercurial
Error: Unable to execute port: can't read "build.cmd": Failed to locate …
0
votes
1answer
33 views
Deep cloning in Compact Framework
Hi Folks,
Is it possible to deep clone an object in the compact framework? I was hoping to use IClonable and memberwiseclone() however this only performs a shallow copy.
Any idea …
0
votes
1answer
27 views
Why does hg clone of hg.netbeans.org/main report “9 integrity errors”?
I just finished cloning the (huge) netbeans repository for
the second time. I found that I couldn't
successfully pull changes, after my first attempt to clone, earlier this week.
I …
6
votes
7answers
172 views
How do I “fork” a Stream in .NET?
As discussed before, when a BinaryReader or BinaryWriter gets closed, its underlying Stream get closed as well (aargh). Consider this situation: a routine R is passed a MemoryStre …
0
votes
0answers
59 views
jQuery clone with inner child element clone - This noob is confused!
This is what is being passed (as seen by PHP), which is a little jacked up:
[action] => AddDailyDeal
[addDailyDealFormProductTitle] => Gatorade 20 oz. bottle
[addDailyDealFo …
0
votes
0answers
36 views
Clone a working Linux server [closed]
I need to clone a working linux server. We cannot shut down the working server. Is there any way I can get a clone and deploy it on another server?
7
votes
6answers
275 views
How can I find copy/paste (duplicate, clone) code in Perl?
I've searched the Internet for a while now and I have not been able to find any free (or cheap) tools/utilities/modules that can analyze a set of Perl files (modules or scripts) an …
0
votes
2answers
56 views
How to add textbox dynamically ?
Hello,
please help with this criteria ?
Users can be able to add as many Names as they can, ADD NAME link serves the purpose for this
How can i handle this specification ?
Plea …
3
votes
3answers
77 views
Is the Prototype Design Pattern Really Just Clone?
I am doing an in depth study on design patterns, and I came across prototype, which I didn't really study before. I have searched the web and several books, and there isn't a real …
1
vote
4answers
58 views
Java: clone() and equality checks
Perhaps I don't understand how clone() works. Shouldn't the return value equal the caller?
int[] nums = new int[] {0, 1, 2};
int[] list = nums.clone();
nums.equals(list); //return …
2
votes
1answer
97 views
Git svn clone: How to defer fetch of revision history
I often have the case that I want to work on a SVN repository right away. But an ordinary git svn clone [url] also clones the entire history. So I want to speed things up. The firs …
0
votes
1answer
30 views
Can I do ‘git svn dcommit’ from a SVN git clone which was created with --no-metadata?
I converted a SVN repository to git using
git svn clone --stdlayout --authors-file=authors.txt --no-metadata svn://svn.foo.com
For some reason, this gave me what looked like a ba …
1
vote
3answers
50 views
How can I clone (or copy) a object to another one, but don’t copy PK attribute??
Hi!
I'm trying to copy all object attibutes to another object, fox example:
Person p1 = new Person();
p1.name = "John";
p1.sex = 'M';
Person p2 = new Person();
p2 = Util.Clone(p1 …
1
vote
5answers
181 views
C++ - cloning base class
Hi,
I have something like that:
Class Foo : Base {.."my stuph" ..};
int main() {
Base *b = new Base;
Foo f (b); <== **error** "invalid conversion from Base to Foo."
…
