docs→rtfd

This commit is contained in:
Marc Beninca 2021-12-11 15:32:21 +01:00
parent 7bc781ed11
commit c7ec1dc5d1
131 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,32 @@
Configure
=========
Identity
--------
.. code:: shell
git config user.name "First Last"
git config user.email "user@domain.tld"
* ~/.gitconfig
.. code:: ini
[user]
name = "First Last"
email = "user@domain.tld"
Auto-build
----------
.. code:: shell
git config receive.denyCurrentBranch updateInstead
* .git/hooks/post-receive (+x)
.. code:: shell
#! /bin/sh
../build_script

View file

@ -0,0 +1,8 @@
git
===
.. toctree::
:maxdepth: 1
configure
snippets

View file

@ -0,0 +1,22 @@
Snippets
========
TODO
----
* .gitignore
* aliases
* git diff
* cached (staging area)
* character
Reverse .gitignore
------------------
::
*
!.gitignore
!*/
!SHA*SUMS