Skip to content

Commit 2529a2f

Browse files
Merge pull request #1 from browserstack/initial-commit
adding readme initial commit
2 parents 88992bb + 182c0e6 commit 2529a2f

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
11
# a11y-engine-axe-core
2-
Fork of Axe core
2+
This is a private fork of public Axe core repo:
3+
https://github.com/dequelabs/axe-core
4+
5+
6+
## How to make changes in axe-core internally
7+
Create a feature branch, add the changes and raise a PR to the `main` branch.
8+
9+
NOTE: `axe-core` public repo already has a master branch, to keep the things clean while merging we avoid make changes on top of it.
10+
11+
12+
## Using the repo as submodule
13+
To use this repo as a submodule, make sure to use `main` branch as the submodule commit head.
14+
15+
This we way can track the changes in a cleaner way.
16+
For development and development testing however we can rely on some other commits in the submodule.
17+
18+
## Pull latest changes from public axe-core repo
19+
20+
```
21+
# cd into the repo
22+
cd a11y-engine-axe-core
23+
24+
# Add public axe-core repo as remote public
25+
git remote add public git@github.com:dequelabs/axe-core.git
26+
27+
# Creates a merge commit
28+
git pull public master
29+
30+
# push the changes to internal private repo
31+
git push origin master
32+
```

0 commit comments

Comments
 (0)