A distributed source code management system, with a simple command-line UI and precise merging.

learn more… | top users | synonyms

2
votes
0answers
20 views

Darcs dependency tree view

Is there a tool that can show a tree view representing patches dependencies in darcs? I found DarcsDeps but it seems dead and I couldn't make it work.
0
votes
2answers
40 views

Darcs push fails for no apparent reason

I have a strange Darcs issue here. I'm running a VM with a Linux guest OS and a Windows host OS. I've set up /mnt as a "shared folder"; any files placed here are actually stored in a folder on the ...
1
vote
3answers
115 views

Darcs installed with cabal not registered as shell command

As a part of installing Ubuntu on my computer, i apt-get installed cabal. After running cabal update, i ran cabal install darcs, discovered that i needed curses, installed libncurses5-dev, discovered ...
6
votes
1answer
319 views

How to work around duplicate symbol error when using Yesod and Darcs library?

It seems impossible to use Yesod together with the Darcs library due to a linker problem. I tracked down the problem and need hints to work around it by people familiar with Darcs internals. When ...
8
votes
1answer
142 views

How to use the darcs library to query information about patches?

I want to write a Haskell program that queries information about a darcs repository. Instead of invoking the darcs executable and parse the results, I would rather use the darcs library directly. It ...
3
votes
1answer
71 views

What is the proper way to script darcs?

I have a few different darcs repos and I would like to write a script to automatically push changes from these repos at the end of the day. I read at this thread that the "right" way to script darcs ...
3
votes
1answer
328 views

installing darcsden

After making cabal install of the darcsden code I get this message: cabal: The following packages are likely to be broken by the reinstalls: bin-package-db-0.0.0.0 ghc-7.4.1 Use --force-reinstalls if ...
8
votes
4answers
315 views

Static web frontend for Git/Mercurial/Darcs

Recently I've found the project git2html: git2html is a simple git web interface. Unlike other web interfaces, git2html does not generate content dynamically: instead of using a CGI script, it ...
-3
votes
1answer
145 views

Merging with an ancestor of the current commit

How does merging in a previously-rejected idea from the same branch, work in various revision control systems? Which offer support for this? Here is my educated guess - is this summary accurate? Git ...
5
votes
2answers
215 views

Graphical diff for darcs

I don't feel very comfortable seeing the darcs changes in plain text format, so I've been looking for a tool to display a nice side-by-side comparison of the changes. For the whatsnew I can just use ...
4
votes
1answer
153 views

Conflict marking confusion when pulling a deleted file with darcs

My confusion arises from the following statement taken from here: When pulling patches that conflict each other (e.g., change the same part of the file) Darcs detects the conflict and marks it in ...
6
votes
2answers
149 views

darcs equivalent for git's submodules?

so yeah just wondering if darcs has anything equivalent to git's submodules. i.e. lets say I have a repo (myapp) and I have a folder in it called mylibrary. mylibrary doesn't really have anything to ...
1
vote
2answers
1k views

Rewrite url turning querystring into directory path and removing cgi script filename and path from url

I am trying to rewrite: repo.pointfree.net/darcsweb/darcsweb.cgi?r=remixbot;a=summary as repo.pointfree.net/remixbot/summary/ for example. ...but the url is apparently not being rewritten (when I ...
8
votes
3answers
693 views

Convert Git Repo to Darcs

I would like to move a git repo I have to darcs. I have not been able to find docs or projects that explain how to do this; it looks like most users want to go the other way. In addition, being able ...
9
votes
2answers
734 views

Lightweight Continuous Integration for a centrally Haskell/Darcs toolchain?

I want some simple CI for a small dev setup. Two motivations -- a full build takes some time, and an anticipated testsuite will also take some time. I really would rather not dive headfirst into one ...
4
votes
2answers
155 views

How to identify a revision in the darcs repository?

I mean that I need to identify a set of applied patches by some number or a string to quickly check if I have the same code version as the other people without any synchronizations. Is there some ...
2
votes
1answer
174 views

Whitespace in version control (darcs)

A junior programmer in our office has an unfortunate (but understandable) habit of using Eclipse's "Correct all the indentation in this file" feature. As a result, his checked out copy includes ...
6
votes
4answers
2k views

How to pull one commit at a time from a remote git repository?

I'm trying to set up a darcs mirror of a git repository. I have something that works OK, but there's a significant problem: if I push a whole bunch of commits to the git repo, those commits get ...
16
votes
3answers
4k views

Why darcs instead of git?

Using pure functional languages can have a lot of benefits over using impure imperatives but low level systems languages will generally allow you to achieve much greater performance especially when ...
4
votes
5answers
230 views

Is there a Darcs Plugin for Hudson

Hy, I want to use Hudson together with darcs (a scm). Is there a plugin which adds Darcs-Support to Hudson? I found no reference on the Pluginlist of Hudson, so has anybody found a plugin? I know I ...
2
votes
1answer
246 views

Darcs conflicts

I installed Darcs a few days ago and have a doubt. I am the only programmer and I usually work on two or three instances of the application, making new feautures. The problems cames because this ...
2
votes
2answers
296 views

Need help in best pratices using Darcs [closed]

I develop in Windows, C language using Codeblocks. Last week I started to use darcs. My application has 20 source code files. I am the only developer; it is a home project. What I usually have is a ...
0
votes
2answers
134 views

darcs help breaks my shell

I have just installed darcs 2.1.2.2. When I type darcs help, sth less-like shows up. When I dismiss it with q it goes away but I don't get prompt and can't execute any commands. C-c doesn't work ...
2
votes
2answers
393 views

darcs amend-record workflow

It's not uncommon for me to record a patch, pull it into my staging branch and then realize I've done something small and silly like a typo in a logging message, or something similarly trivial which ...
53
votes
18answers
5k views

What version-control system is most trivial to set up and use for toy projects?

I teach the third required intro course in a CS department. One of my homework assignments asks students to speed up code they have written for a previous assignment. Factor-of-ten speedups are ...