File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
# 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
+ ```
You can’t perform that action at this time.
0 commit comments