CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 23 Aug 2025 08:39:12 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.838014, exclusion.robots;dur=0.041352, exclusion.robots.policy;dur=0.025098, esindex;dur=0.014529, cdx.remote;dur=14.719437, LoadShardBlock;dur=212.994312, PetaboxLoader3.datanode;dur=48.713821, PetaboxLoader3.resolve;dur=90.770354
x-app-server: wwwb-app200
x-ts: 302
x-tr: 259
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app200; 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: Sat, 23 Aug 2025 08:39:13 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.711363, exclusion.robots;dur=0.031296, exclusion.robots.policy;dur=0.018385, esindex;dur=0.011919, cdx.remote;dur=11.538775, LoadShardBlock;dur=253.537500, PetaboxLoader3.datanode;dur=263.125321, PetaboxLoader3.resolve;dur=256.720701, load_resource;dur=302.159130
x-app-server: wwwb-app200
x-ts: 200
x-tr: 630
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
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.