Git repository for the W3C Validator :-)
Build guide @ https://github.com/tlvince/w3c-validator-guide
Git repository for the W3C Validator :-)
Build guide @ https://github.com/tlvince/w3c-validator-guide
Git repository browser providing several colourful views:
"check out more than one branch at a time"
Useful if you're simultaneously working on several versions / branches of the same repository ;-)
Excellent overview of Docker components: images, repositories, index
Mercurial repository for the W3C Validator :-)
Uses a project or repository's history to plot user contributions, displaying an elegant, colored graph of the file arborescence.
After running it on quite different projects...
...watching some vids on teh intartubez:
It allows to arbitrary spot some interesting implementation aspects (sorted by descending impact):
Having a graphical tool also quickly shows:
Some more CI-related matters:
1# first, clone the repository
2git clone REPO REPO2
3cd REPO2
4# remove all unneeded files from this version
5git filter-branch -f --prune-empty --index-filter "git rm --cached --ignore-unmatch FILES_AND_DIRS_TO_DELETE"
6git gc --aggressive --prune=1day
7git fsck --unreachable
8# refresh the remote
9git remote rm origin
10git remote add origin ssh://HOST/REPO
11# broforce push!
12git push -f origin master
13
14# cleanup our original repository
15cd REPO
16git filter-branch -f --prune-empty --index-filter "git rm --cached --ignore-unmatch OTHER_FILES_AND_DIRS_TO_DELETE"
17git gc --aggressive --prune=1day
18git fsck --unreachable
19# broforce push!
20git push -f origin master