Questions tagged [fossil]

Fossil is a distributed version control system that includes source control management, bug-tracker, wiki, and forum in a single executable.

Fossil requires minimal configuration, is cross-platform, and includes a builtin web interface and server. The fossil web site pages are generated by an instance of Fossil itself.

Fossil is most notably used by the open-source software project SQLite, which was also created by Fossil's creator, D. Richard Hipp.

Getting Started

  1. Download the latest version of Fossil available for your platform.
  2. Read the Fossil Concepts and Fossil Quick Start Guide, and begin experimenting with Fossil.

Community

138 questions
0
votes
1 answer

Mobile app with locally stored, synchable, searchable read-only content. Sqlite?

I'm working on a (Cordova iOS/Android) mobile app with <100MB worth of slowly-changing, read-only (to the user) data that needs to be searchable (full text and facets). Coming from a web background, we'd usually serve the data from a web API and…
AndrewO
  • 1,590
  • 1
  • 17
  • 24
0
votes
1 answer

Updating to a previous version of code with Fossil without a file called "Desktop.ini"

I am new in version control and Fossil. We are using Fossil to manage the version control of our C code. I need to come back to a previous version using the command "update version number", however it does not work because one of the files included…
Enrik DS
  • 1
  • 1
0
votes
2 answers

Updating branch in Fossil

I am working on a project, using Fossil for version controlling and organizing it. I have some branches other than my main trunk branch, and want to update (commit) only a single branch. Doing commit will push my changes on a branch to the main…
user4813927
0
votes
2 answers

Move large number of files in Fossil repo

Is there a way to move a large number of files in a Fossil repo? Ideally, I'd be able to move them to a new directory, and Fossil would detect that and keep tracking them. fossil mv requires specifying the filenames individually. fossil add can be…
user2225804
  • 761
  • 8
  • 22
0
votes
2 answers

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 UNIQUE NOT NULL, content BLOB, CHECK(…
Elazar Leibovich
  • 32,750
  • 33
  • 122
  • 169
0
votes
2 answers

Publish Ticket Updates/Commits to Webhook from Fossil TH1

I'm currently trying to setup Discord(or Slack-like) webhooks with my Fossil Repo running 2.6 I'm following this documentation: Fossil TH1 Docs Discord Webhook Docs Here's an example of what I'm trying to run in the raw TH1 requests: http…
Jacob Morrison
  • 610
  • 2
  • 10
  • 19
0
votes
1 answer

how can I modify the generated metadata?

Consider the following documentation, it appears to be outdated. There's no admin -> header path in fossil ui, AFAIK I have to change the source code string and recompile fossil?
Nozz
  • 23
  • 3
0
votes
1 answer

Want to launch fossil from a tcl file

Hi I want to launch fossil using a tcl file. I have been trying to run the fossil setting up code like fossil clone using exec in the tcl file but it is not running. Can anyone please help me in how to run the fossil from a tcl file. So that when I…
UBan
  • 29
  • 5
0
votes
1 answer

I broke fossil-scm - SQLITE_NOTADB

In the Q&A style of stack exchange, I had this error and couldn't find a solution. The accident was cause by me typing: fossil update a_filename This leads to corruption of the fossil-scm settings which outputs: SQLITE_NOTADB: file is not a…
root-11
  • 1,727
  • 1
  • 19
  • 33
0
votes
2 answers

Fossil JSON API: How to create a wiki page?

I've been trying to create a wiki page, ufollowing the documentation of the Fossil JSON API. When I put the URL http://myrepo.top/json/wiki/create?name=test I get and answer similar…
Offray
  • 505
  • 1
  • 4
  • 15
0
votes
1 answer

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 Fossil or web guru right now.
0
votes
3 answers

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 $ fossil ci -m 'init commit' I want do do things like…
Daniel YC Lin
  • 15,050
  • 18
  • 63
  • 96
0
votes
2 answers

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?
Prof. Falken
  • 24,226
  • 19
  • 100
  • 173
0
votes
1 answer

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 the repository. I have always just worked on the…
Trausti Thor
  • 3,722
  • 31
  • 41
0
votes
2 answers

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 the chiselapp repository as a common base. Very…
Ralf
  • 598
  • 1
  • 7
  • 17
1 2 3
9
10