CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 25 Aug 2025 01:54:02 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100430185150
location: https://web.archive.org/web/20100430185150/https://github.com/sitaramc/git-notes/tree/pu
server-timing: captures_list;dur=0.884783, exclusion.robots;dur=0.029666, exclusion.robots.policy;dur=0.012403, esindex;dur=0.018314, cdx.remote;dur=82.603846, LoadShardBlock;dur=314.585561, PetaboxLoader3.datanode;dur=91.414908, PetaboxLoader3.resolve;dur=61.030135
x-app-server: wwwb-app224
x-ts: 302
x-tr: 433
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Mon, 25 Aug 2025 01:54:05 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 30 Apr 2010 18:51:50 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "908d219c1e70eaa10763cd946957b107"
x-archive-orig-x-runtime: 182ms
x-archive-orig-content-length: 28573
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 30 Apr 2010 18:51:50 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 31 Aug 2009 04:06:48 GMT", ; rel="prev memento"; datetime="Mon, 31 Aug 2009 04:06:48 GMT", ; rel="memento"; datetime="Fri, 30 Apr 2010 18:51:50 GMT", ; rel="last memento"; datetime="Fri, 30 Apr 2010 18:51:50 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_15_20100430171537_crawl101-c/52_15_20100430185050_crawl101.arc.gz
server-timing: captures_list;dur=0.447616, exclusion.robots;dur=0.017140, exclusion.robots.policy;dur=0.008427, esindex;dur=0.009816, cdx.remote;dur=16.550208, LoadShardBlock;dur=116.398221, PetaboxLoader3.datanode;dur=1847.611342, PetaboxLoader3.resolve;dur=93.370607, load_resource;dur=1860.571802
x-app-server: wwwb-app224
x-ts: 200
x-tr: 2055
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
sitaramc's git-notes at pu - GitHub
sitaramc / git-notes
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
pu
click here to add a description
click here to add a homepage
Sending Request…
Notes made while learning git, cheatsheets, etc.; may be useful to others... — Read more
README
# (READ THIS FIRST) README for the git-notes repo This repo contains all my notes about git. I started writing them for my own understanding, almost like cheat sheets, but they may be useful for others also. See 000-README.notes (or 000-README.html in the generated pages) for details of what these files contain. The rest of this readme is only about the markup that I use; from a git-learning point of view this is administrivia. ---- [[TOC]] ## Reading these files All these documents are plain text, so reading them as is should be no problem using any text editor/viewer. #### HTML and PDF If you want to format them to HTML * first, use the `md.pl` program inside the `tools` subdirectory. This handles superscript tags (two `^` characters on each side) to `<sup>..</sup>` pairs, and includes a proper TOC if the `[[TOC]]` marker is found. This produces proper *Markdown* text. You can also give it the `-css` option is you want a small amount of CSS at the top (highly recommended). * then, use the standard `Markdown.pl` program (a copy can be found in the same `tools` subdirectory) to convert *Markdown* to *HTML*. You can convert the HTML to PDF by piping it to `html2ps | ps2pdf - - > output.pdf`. ## Updating the content * Please continue to use the ".notes" extension for these files. Some parts of my automated workflow (not part of this repo) use this to identify which files to pre-process using `md.pl`. * Please do not use hard tabs. * If you wish to send me patches, please use Markdown markup. The "extensions" I use should not bother you too much, (unlike in the old wiki_creole days). * Please note that I consider HTML and PDF to be generated outputs, so they are listed in ".gitignore". #### Generating a TOC If the token `[[TOC]]` appears on a line by itself, `md.pl` will generate a table of contents for all headings upto level 4 and insert it at that position. You can change that to some other level, say 3, by saying "TOC 3" instead of just TOC.