Fossil add for external directory

I read some questions and answers here, but that does not fit my situation.

I want to keep all my fossil repositories in one place.

so I

c: \ Fossil_Repos \ with repo for WebPages_Repo and another for Dev_repo, etc. etc. etc.

I would like to keep my original web pages and development pages in separate directories that are in the Fossil_Repos directory, here is my structure

c:\Fossile_Repos\
c:\DevEnvironment\
c:\WebPageDevelopment\

This structure does not seem to be unreasonable.

If from my c: \ Fossile_Repos \ I run the commands

fossil open Dev_Repo
fossil add c:\DevEnvironment

Then I see a list of all directories and files under c: \ DevEnvironment, however I then add

fossil commit -m "first deposit"

, , . , ( C:/DevEnvironment/firstFile.xml unix )

- , ?

+3
1

, . , .

, :

cd c:\DevEnvironment
fossil open c:\Fossile_Repos\repo_file_name
.. edit the files ...
fossil commit -m "first deposit"
+5

Source: https://habr.com/ru/post/1529064/


All Articles