-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d54c6e
commit 246f382
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 [email protected]: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. | ||
|