From 246f382b0819c02e0ab43e6d90395d656a6d178c Mon Sep 17 00:00:00 2001 From: Florian Rappl Date: Sat, 18 May 2019 13:48:06 +0200 Subject: [PATCH] Updated info on common files --- .github/CONTRIBUTING.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 56a673e088..f0a00c4fbb 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -105,6 +105,30 @@ git tag v1.0 (The last part is automatically performed by our CI system.) +### Basic Files + +The following files should not be edited directly in the current repository, but rather in the `AngleSharp.GitBase` repository. They are then synced via `git pull` from a different remote. + +``` +.editorconfig +.gitignore +.gitattributes +.github/* +appveyor.yml +build.ps1 +build.sh +tools/anglesharp.cake +tools/packages.config +LICENSE +``` + +To sync manually: + +``` +git remote add gitbase git@github.com:AngleSharp/AngleSharp.GitBase.git +git pull gitbase master +``` + ### Versioning The rules of [semver](http://semver.org/) don't necessarily apply here, but we will try to stay quite close to them.