Fossil is a distributed version control system.

learn more… | top users | synonyms

0
votes
0answers
14 views

Can fossil reserve executable mode on my shell script?

I use fossil to keep my shell script. But If I check in it and use it cross Windows & Linux, then the executable permission is missing of my shell script. How to add it back like svn's property ...
1
vote
1answer
34 views

Excluding certain directories from the ignore-glob

Is there a way to exclude certain directories from ignore-glob such that (e.g.) .dll files will generally be ignore except if they are in some specific directories?
0
votes
1answer
43 views

Fossil repository on Squarespace

Does anyone know how or if it is possible to host a Fossil repository on a Squarespace blog site? I'm still working on learning Java for Android and don't need to take a diversion into becoming a ...
1
vote
1answer
69 views

getting started with fossil

I just got started with fossil. My reasons for selecting fossil are: cross-platform single exectuable single repository file (typical extension .fossil) supposedly easy to use (but aren't they ...
2
votes
1answer
66 views

Setting up a Fossil server on Apache

I'm trying to set up a Fossil server on an externally hosted Apache server without much luck. I created the cgi script and placed it and the executable in the cgi folder. I don't have access to any ...
1
vote
1answer
64 views

Error on cloning fossil: “Attempt to write a readonly database”

This is the first time I've attempt to host a fossil repository on my personal server. When I try to clone a project on Windows 7, I get a bizarre message: PS [folder]> fossil clone ...
1
vote
1answer
215 views

Force use gcc to compile (instead of cc) in ./configure under Solaris Sparc

I want to build fossil code on Solaris. wget http://www.fossil-scm.org/index.html/tarball/tip.tar.xz tar xf tip.tar.xz ; cd tip.tar ./configure CC=gcc CXX=g++ C=gcc BCC=gcc # no error It will ...
1
vote
1answer
50 views

Download latest version of a file in Fossil repo?

I see that Fossil UI allows the downloading of files ("artifacts") at the url /raw/directory/filename?name=artifactID. Is there a way to always get the latest version of the file without knowing the ...
0
votes
2answers
150 views

How to do 'fossil' commands on relative directory?

I want to keep my linux config in fossil scm system. Here is what I did at initial stage. $ cd / $ fossil new b.fsl $ fossil open b.fsl $ fossil add etc/group $ fossil add boot/grub/menu.lst $ ...
0
votes
2answers
59 views

How to restore single directory in a Fossil repo?

Some commits ago, I deleted a directory in my Fossil repo. How do I get it back?
0
votes
1answer
66 views

Common header and footer in fossil

I have a master remote repository, and two local repositories. However, it appears that changes to header/footer/css do not propagate throughout the repos. How can I achieve this?
1
vote
1answer
53 views

fossil v1.24 fails on linux with 'no such file'

If I download fossil v1.23 to my linux server, everything goes fine. root@x:/home/james/test# unzip fossil-linux-x86-20120808112557.zip Archive: fossil-linux-x86-20120808112557 (1).zip inflating: ...
0
votes
1answer
99 views

merge two fossil projects

I have two ruby on rails websites which are almost identical. One is a development version and the other one is in production. The only place where they differ is in uploaded data, but that is not in ...
0
votes
1answer
137 views

What is the typical workflow with fossil, especially compared to that of git?

For git, "A successful Git branching model" gives great advice. I want to give Fossil a shot, and it seems to be very compatible with git (the most striking difference (of SCM features) I noticed so ...
0
votes
1answer
181 views

Keeping website up to date with fossil scm / shared hosting

For my latest website project I have used fossil for the first time, and it worked well. What I did so far is develop on my PC, and push to chiselapp. So I could now work on the site with a team using ...
0
votes
1answer
129 views

Unable to use fossil through SSH, results in segmentation fault

I'm trying to use Fossil on my shared sever through SSH. I've taken the following steps: Created the folder fossil (in my user root, which gives the path /fossil/) Uploaded the linux build of Fossil ...
2
votes
1answer
161 views

Get fossil to accept several tags on commit?

I would really like if I could do something like: fossil commit --tag 0.1.2 release and have fossil add both 0.1.2 and release as tags. How can I accomplish this? Edit: I built the fossil on ...
0
votes
1answer
130 views

What is a stash?

I have googled and searched in various places for a while, but have not found a good answer. What is a stash, and what is it used for? (Source of confusion: using beautiful Fuel with Fossil, clicked ...
0
votes
1answer
77 views

Fossil: recognise changes while repo closed

I know, I should only change files in a project, when the repository is opened. But I now tried to see what happens when I change a file when the repo is closed, because I will often do that, because ...
2
votes
1answer
142 views

Create Fossil repository from existing project files

I'd expect this to be explained in the beginner's quick start guide, because almost everyone who starts with fossil will have projects that he wants to start managing with fossil. Yet I could not find ...
0
votes
2answers
108 views

Fossil: “not a valid repository” - deleted repository

I'm trying fossil for the first time, and messed it up within minutes. I created a repository, then apparently ran commands in the wrong folders etc., eventually deleted the test repository, in order ...
1
vote
1answer
126 views

Multiple coders on the same source [closed]

I'm having a problem with my coders, they seems to keep on overwriting each others work from time to time because they keep on working on overlapping files. I've looked it up and it seems that ...
1
vote
1answer
55 views

How do I see outgoing changes with fossil

With veracity and mercurial you can do a "outgoing" command to see what changes would be pushed to the server. How can I do that with fossil?
1
vote
1answer
89 views

Fossil add for external directory

I have read some of the questions and answers here, but it none match my situation exactly. I want to keep all my fossil repos in a single place. so I have c:\Fossil_Repos\ with a repo for ...
2
votes
1answer
81 views

FOSSIL (version control system) does not add .htaccess files. Why?

I have a website with many .htaccess files in it. But fossil does not save them in repo when I use addremove. Instead, I have to add each htaccess file by hand (using the add command). What is ...
3
votes
1answer
169 views

How to remove a binary file from fossil history

This situation happens a little often, your whole repository has 2MB and then someone thinks it would be great to have a backup of selenium.jar with 20MB in repository. So everyone now must download a ...
0
votes
1answer
199 views

Cloning Fossil with self-hosted cgi script yeilds “unknown repository”

I've been trying for two weeks to set up fossil to work and if I did not see the advantage of having a repository I would have given up by now. I am really at my last wits end with this. I have set ...
4
votes
1answer
439 views

Hesitating between git and fossil

Newbie to Fossil (or any other version control system) here. Used a proprietary one earlier, but never set one up myself. Currently, I am looking to set one up so that my friends and I can use it for ...
1
vote
0answers
103 views

Executing CGI through Ruby web app behind Passenger

I have a Rack app (call it Rails, Sinatra, etc.) running through Passenger with nginx as front server. I'm currently running on another place fossil-scm via CGI with multiple repos. I want to fuse ...
4
votes
1answer
239 views

Unable to create a new fossil repo, fossil beginner

I figured I would check out fossil for some small apps I have to complete. I am not new to DVCS as I have used CVS, subversion, mercurial, and git. After installing on my Mac (10.7), using homebrew, I ...
7
votes
1answer
663 views

How to fix a ticket with a commit in Fossil

So, I think in Redmine/Git it is possible to fix an issue using the commit comment: git commit -m "Fixes #123" Is something like this possible in Fossil? How?
3
votes
1answer
342 views

Fossil: repository does not exist or is in an unreadable directory?

I have 2 local repos on my notebook. The first one is Fresh.fossil (http://chiselapp.com/user/johnfound/repository/FreshIDE/), located in C:\FASM\STUFFS, and the second one is book.fossil ...
1
vote
2answers
317 views

Why does the Fossil SCM use TEXT to store hashes?

I was wondering how should I store a hash In the Fossil SCM, SHA1 hashes are stored as text of length 40. CREATE TABLE blob( rid INTEGER PRIMARY KEY, rcvid INTEGER, size INTEGER, uuid TEXT ...
3
votes
1answer
399 views

Fossil: Deleting missing files in one command?

Is there a way to delete "MISSING" files explicitly without having to delete them with fossil rm one by one? I've recently created a repository with a Flash XFL folder in it and Flash seems to delete ...
0
votes
3answers
217 views

How to integrate an open source C program instead of calling its executable through a system call?

I have an executable (fossil scm) that is being invoked by my program externally through ::CreateProcess windows call. The stdout and stderr are then captured. Since the source code for fossil is ...
3
votes
3answers
1k views

FossilSCM, ignoring files on add

I've done some research, but honestly can't seem to figure this out. You can set some set some options to have fossil extras ignore files, but not fossil add? The configuration options through the ...
6
votes
1answer
713 views

How to migrate from fossil to hg

I have a fossil repository. How can I migrate the commits to a hg repository. I don't care about issues, wiki, branches.
6
votes
1answer
254 views

fossil dvcs difference between update and checkout commands

After reading the builtin help, it seems to me that both commads can be used for modifying the workspace to match a certain revision. But I don't understand the differences between update and ...
1
vote
2answers
172 views

Can Fossil insert the SHA1 checksum of an immediate commit into a file?

Say I want to commit a new version into the repository, but I'd like to automatically insert the checksum of that new commit (unknown to me) into a file (or somewhere into a file) that also needs to ...
7
votes
1answer
722 views

Is it possible to export from Fossil SCM into some other DVCS?

For many years I used Darcs as my only DVCS...some time ago I explored Monotone which I like as well. However, the main problem with both is the lack of complete hosting solutions. Fossil looks as ...
1
vote
1answer
413 views

Fossil: how to display checked in image files on wiki pages?

Here is the complete workflow: Initialize the repository and the workspace $ fossil new repo.fossil $ mkdir workspace $ cd workspace $ fossil open ../repo.fossil Add an image file to the ...
4
votes
1answer
643 views

How to close a leaf in Fossil

The documentation on branching in Fossil SCM says a leaf is considered closed if it has a closed tag. However, when I enter > fossil tag add closed xxxxx > fossil leaves --closed > it ...
4
votes
1answer
396 views

With Fossil source control, does the “fossil clone” command have the exact same effect as if you just copy the repository file manually?

With Fossil source control, does the "fossil clone" command have the exact same effect as if you just copy the repository file manually? Could I just put the repository file on a usb stick and ...
8
votes
7answers
1k views

Easy-to-backup version control for windows single developer

I really need to get started with source control because I'm going absolutely crazy keeping track of my code and modifications as it is. I'm a single developer on Windows. I use Eclipse for most of ...
6
votes
2answers
1k views

Relational database backend for mercurial or git

What I like about fossil is that it uses plain old sqlite to store changesets, files, etc. I can use its command line tool to query the repository, but if I want something not supported by it, I can ...
1
vote
1answer
380 views

Fossil gpg workflow for teams

I'm learning fossil and trying to reproduce a workflow for two people modifying the same source code tree. So, Alice and Bob both have local repositories of some source code. Both have autosync off. ...
1
vote
1answer
354 views

Managing common components with Fossil CVS

I'm a Fossil (and CVS configuration) novice attempting to create and manage a set of distributed Fossil repositories for a Delphi project. I have the following directory tree on my development ...
15
votes
4answers
2k views

Are there sites hosting fossil repositories? [closed]

There are many sites that host public repositories of code. Examples launchpad (bazaar) bitbucket (mercurial) github (git) Are there similar sites that allow coders to store and manage fossil ...
16
votes
9answers
7k views

GUI for Fossil SCM

Are there any GUIs for fossil? I've been getting used to the idea of source control for solo projects, and having an interface for the commands in fossil would help. Something simple that helps ...
2
votes
2answers
345 views

Is SQL the ''assembler'' of the NoSQL database world?

I recently came across http://www.fossil-scm.org/index.html/doc/tip/www/theory1.wiki by D. Richard Hipp, the developer responsible for SQLite. it go me thinking, is Fossil the only NoSQL database ...

1 2