git

the content tracker

On mac os git needs to be installed with home brew

git [-C path] [-c name value]
     [--exec-path[=path]] [--html-path] [--man-path] [--info-path]
     [--paginate|--no-pager] [--no-replace-objects] [--bare]
     [--git-dir=path] [--work-tree=path] [--namespace=name][--version] [--help]   command [args]

Tersified from the man page and examples added by DGG

Distributed revision control system that provides both high-level operations and full access to internals.

See gittutorial(7) to get started, then giteveryday(7) for a useful minimum set of commands.
The real docs

-c name[=[value]] configuration parameter to pass to the command, overriding configuration files.
The name is in the format as listed by git config (subkeys separated by dots).
Omitting the = sets name to true
Omitting value sets name to the empty string.
--exec-path[=path] Path to core Git programs. Same as $GIT_EXEC_PATH.
If no path is given, outputs the current setting and exits.
/Library/Developer/CommandLineTools/usr/libexec/git-core
--html-path output the path where HTML documentation is and exits.
/Library/Developer/CommandLineTools/usr/share/doc/git-doc
--man-path output the manpath and exits.
/Library/Developer/CommandLineTools/usr/share/man
--info-path output Info files path and exits.
/Library/Developer/CommandLineTools/usr/share/info
-p
--paginate
output to $PAGER
--no-pager Do not output to $PAGER.
--git-dir=path path to current working directory. See $GIT_DIR,
--work-tree=path See $GIT_WORK_TREE and core.worktree
--namespace=path See $GIT_NAMESPACE
--bare Treat the repository as a bare repository.
If $GIT_DIR is not set, it is the current working directory.
--no-replace-objects Do not use replacement refs to replace Git objects.
--literal-pathspecs Treat pathspecs literally (i.e. no globbing, no pathspec magic), see $GIT_LITERAL_PATHSPECS
--glob-pathspecs Add "glob" magic to all pathspec. see $GIT_GLOB_PATHSPECS
Use pathspec magic ":(literal)" to disable globbing on individual pathspecs
--noglob-pathspecs Add "literal" magic to all pathspec, see $GIT_NOGLOB_PATHSPECS
Use pathspec magic ":(glob)" to enable globbing on individual pathspecs
-C path Run as if git was started in path
When multiple -C are given, each subsequent non-absolute path is relative to the preceding -C path.

Affects options that expect path name like --git-dir and --work-tree their interpretations of the path names would be made relative to the working directory caused by the -C option.
Equivalent:

               git --git-dir=a.git   --work-tree=b -C c status
               git --git-dir=c/a.git --work-tree=c/b status
--icase-pathspecs Add "icase" magic to all pathspec, see $GIT_ICASE_PATHSPECS
--version
--help synopsis and commonly used commands. With --all all available commands are shown.
usage: git [--version] [--help] [-C <path>] [-c name=value]
           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
           [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]
           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]            command [args] 
start 
   clone      repository into a new directory
   init       Create an empty Git repository or reinitialize an existing one

work on the current change (see also: git help everyday)
   add        file contents to the index
   mv         a file, a directory, or a symlink
   reset      current HEAD to the specified state
   rm         files from the working tree and from the index

examine the history and state (see also: git help revisions)
   bisect     find the commit that introduced a bug using binary search. 
You need to run this command from the toplevel of the working tree.
grep output lines matching a pattern log commit logs show various types of objects status the working tree status grow, mark and tweak your common history branch List, create, or delete branches checkout Switch branches or restore working tree files commit Record changes to the repository diff Show changes between commits, commit and working tree, etc merge Join two or more development histories together rebase Reapply commits on top of another base tip tag Create, list, delete or verify a tag object signed with GPG collaborate (see also: git help workflows) fetch Download objects and refs from another repository pull Fetch from and integrate with another repository or a local branch push Update remote refs along with associated objects 'git help -a' and 'git help -g' list available subcommands and some concept guides. See 'git help ' or 'git help ' to read about a specific subcommand or concept.

GIT COMMANDS: High level ("porcelain") commands and low level ("plumbing") commands.

All commands with are prefixed with git-

HIGH-LEVEL COMMANDS (PORCELAIN)

We separate the porcelain commands into the main commands and some ancillary user utilities.

Main porcelain commands

init initalize a new repository or reinitialize an existing one.
clone Clone a repository into a new directory.
git clone --verbose --progress --recursive https://github.com/ruuvi/ruuvi.firmware.c
‡fetch Download objects and refs from another repository.
 
‡gui graphical user user interface
‡citool Graphical git-commit aka GitGui.commit.
 
‡diff Show DIFFerences between commits, commit and working tree, etc.
‡commit Make changes to the repository.
‡describe Describe a commit using the most recent tag reachable from it.
git describe --tags --exact-match
fatal: no tag exactly matches 'ae747e8935b59a1c8fade7f744a8d111b8e83143'
‡cherry-pick Apply the changes introduced by some existing commits.
‡grep select lines matching a pattern as with grep filter.
‡add file contents to the index.
‡am Apply a series of patches from a mailbox.
‡archive Create an archive of files from a named tree.
‡bundle Move objects and refs by archive.
‡bisect find the commit that introduced a bug using binary search.
branch List, create, or delete branches.
* master
‡checkout Switch branches or restore working tree files.
‡clean Remove untracked files from the working tree.
‡format-patch Prepare patches for e-mail submission.
‡gc Garabage Collection
Counting objects: 5683, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2288/2288), done.
Writing objects: 100% (5683/5683), done.
Total 5683 (delta 3141), reused 5608 (delta 3066)

‡log Show commit logs.
commit ae747e8935b59a1c8fade7f744a8d111b8e83143
Author: Dennis German 
Date:   Wed Dec 30 20:57:13 2020 -0500

    Add files via upload

commit 239061ebe6c67592397137676621bf590e7a6a94
Author: Dennis German 
Date:   Wed Dec 30 20:54:55 2020 -0500

    Update README_2.6.0.md 
Show local aheads
git diff origin/master..HEAD|cut -c1- use cut to ditch esc sequesnces for color
diff --git a/3.30.0/p/src/application_config/application_mode_longmem.h b/3.30.0/p/src/application_config/application_mode_longmem.h
new file mode 100644
index 0000000..c81fcd4
--- /dev/null
+++ b/3.30.0/p/src/application_config/application_mode_longmem.h
@@ -0,0 +1,44 @@
+/**
+ * @file application_config/application_mode_longmem.h
…
‡merge Join two or more development histories together.
‡mv Move or rename a file, a directory, or a symlink.
   -v, --verbose         be verbose
    -n, --dry-run         dry run
    -f, --force           force move/rename even if target exists
    -k                    skip move/rename errors
‡notes Add or inspect object notes.
‡pull Fetch from and integrate with another repository or a local branch.
‡push Update remote refs along with associated objects.
‡rebase Forward-port local commits to the updated upstream head.
‡reset Reset current HEAD to the specified state.
‡revert Revert some existing commits.
‡rm Remove files from the working tree and from the index.
‡shortlog Summarize git log output.
Dennis German (43):
      move MAIN_LOOP_INTERVAL values to header and don't divide URL value by 10 in the call
      move MAIN_LOOP_INTERVAL values from main.c to header
      revise ADVERTISING_INTERVALs
      update add independent advertising interval
      Update bluetooth_application_config.h
      Update bluetooth_application_config.h
      Update bluetooth_application_config.h
      Correct repo structure
      Add Bootloader to log messages
…
      Add files via upload

Janne Rosberg (5):
      ruuvitag-demo: simple beacon demo for ruuvitag
      Update README.md
      makefile: add sdk patching support
      Makefile: cleanup. Let make handle dependecies
      drivers: add bme280 driver

       
‡show Show various types of objects.
‡status Show the working tree status.
> git status |more
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
  (use "git add/rm ..." to update what will be committed)
  (use "git checkout -- ..." to discard changes in working directory)

    deleted:    ../../../HOW_TO_CONTRIBUTE.md
    deleted:    ../../../Makefile
    deleted:    ../../../README.md
…
    deleted:    ../../../sdk_overrides/nrf_drv_wdt.c

Untracked files:
  (use "git add ..." to include in what will be committed)

    ../../../.tune2UICR.sh.swp
    ../../../0-notes-190212.txt
…
    ../../../yield.asm

no changes added to commit (use "git add" and/or "git commit -a")

‡stash Stash the changes in a dirty working directory away.

git submodule

[--quite]
status [--cached]
[--recursive] [--] []
 2f96b4d801b12d9eb0d12767a02106412562239a ../iota.lib.c (heads/master)
 c8cd1f87def10ebf0f31483dcc42c3b95473c982 ../iota.lib.c/external/ccurl (v0.0.4-beta-73-gc8cd1f8)
 88e55c9c1d8fd25cc2cc9a2f411542ef5d5c4b9e ../iota.lib.c/external/ccurl/deps/libopencl-stub (remotes/origin/dev-7-g88e55c9)
 42bc671f47b122fad36db5eccbc06868afdf7862 ../iota.lib.c/external/googletest (release-1.8.0-52-g42bc671)
 f09151bc87ba210f955d58dffc07b0ee1e755234 ../iota.lib.c/external/sanitizers-cmake (f09151b)
add [-b ] [-f|--force] [--name ] [--reference ] [--] []
init [--] []
deinit [-f|--force] (--all| [--] …)
update [--init] [--remote] [-N|no-fetch] [-f|force] [--checkout|merge|rebase] [--[no-]recommend-shallow] [--reference ] [--recursive] [--] []
summary [--cached|files] [--summary-limit ] [commit] [--] []
foreach [--recursive]
sync [--recursive] [--] []
absorbgitdirs [--] []

Initialize, update or inspect submodules.

‡tag Create, list, delete or verify a tag object signed with GPG.
‡worktree Manage multiple working trees.
gitk The Git repository browser.

Ancillary Commands

Manipulators:
‡config Get and set repository or global options.
‡fast-export Git data exporter.
‡fast-import Backend for fast Git data importers.
‡filter-branch Rewrite branches.
‡mergetool Run merge conflict resolution tools to resolve merge conflicts.
‡pack-refs Pack heads and tags for efficient repository access.
‡prune Prune all unreachable objects from the object database.
‡reflog Manage reflog information.
‡relink Hardlink common objects in local repositories.
‡remote Manage set of tracked repositories.
‡repack Pack unpacked objects in a repository.
‡replace Create, list, delete refs to replace objects.

Interrogators:

annotate Annotate file lines with commit information.
blame Show revision, author and last modified date for each line of a file.

git blame [options] [rev-opts] [rev] [--] file


git blame app_log.c|sed "s/:.. [-+]0.00//;  s/ 20/ /"
00000000 (Not Committed Yet 21-12-19 23:44   1) /**
00000000 (Not Committed Yet 21-12-19 23:44   2)  * @file app_log.c
…
00000000 (Not Committed Yet 22-01-05 07:54  53) TESTABLE_STATIC uint64_t m_last_sample_ms;//!< Timestamp of last processed sample.
afeda5ba (Otso Jousimaa     20-08-25 14:29  54) 
c75896c5 (Nikita Pavlov     21-04-08 12:07  55) 
…
afeda5ba (Otso Jousimaa     20-08-25 14:29 258)     {
64e46332 (Otso Jousimaa     21-09-03 11:13 259)         ts_s  = m_log_output_block.storage[p_rs->element_idx].timestamp_s;
64e46332 (Otso Jousimaa     21-09-03 11:13 260)         ts_ms = ts_s * 1000LLU;
afeda5ba (Otso Jousimaa     20-08-25 14:29 261)         p_rs->element_idx++; 
…
++
Full sample

rev-opts are documented in rev-list

--incremental Show blame entries as we find them, incrementally
-b Show blank SHA-1 for boundary commits (Default: off)
--root Do not treat root commits as boundaries (Default: off)
--show-stats Show work cost statistics
--progress Force progress reporting
--score-debug Show output score for blame entries
-f, --show-name Show original filename (Default: auto)
-n, --show-number Show original linenumber (Default: off)
-p, --porcelain Show in a format designed for machine consumption
--line-porcelain Show porcelain format with per-line commit information
-c Use the same output mode as git-annotate (Default: off)
-t Show raw timestamp (Default: off)
-l Show long commit SHA1 (Default: off)
-s Suppress author name and timestamp (Default: off)
-e, --show-email Show author email instead of name (Default: off)
-w Ignore whitespace differences
--indent-heuristic Use an experimental heuristic to improve diffs
--minimal Spend extra cycles to find better match
-S file Use revisions from file instead of calling git-rev-list
--contents file Use file's contents as the final image
-C[score] Find line copies within and across files
-M[score] Find line movements within and across files
-L n,m Process only line range n,m, counting from 1
--abbrev[=n] use n digits to display SHA-1s

cherry Find commits yet to be applied to upstream.
count-objects Count unpacked number of objects and their disk consumption.
10 objects, 40 kilobytes
difftool Show changes using common diff tools.
fsck Verifies the connectivity and validity of the objects in the database.
Checking object directories: 100% (256/256), done.
Checking objects: 100% (3293/3293), done.
get-tar-commit-id fid Extract commit ID from an archive created using git-archive.
instaweb Instantly browse your working repository in gitweb.
lighttpd not found. Install lighttpd or use --httpd to specify another httpd daemon.
merge-tree Show three-way merge without touching index.
git merge-tree base-tree branch1 branch2
rerere Reuse recorded resolution of conflicted merges.
rev-parse Pick out and massage parameters.
ruuvi/firmware/3.30.0/p/src > git rev-parse --short HEAD
ae747e8

git rev-parse HEAD
6d7dd8e6985c0ef619cba318ba1dfc84aa6c9648

cd ../../3.31.1/304
/3.31.1/304 > git rev-parse HEAD
24cbe775b4a318caccff86e4531ff2ec70794b23
show-branch Show branches and their commits.
[master] Merge pull request #38 from Scrin/minor-build-fixes
verify-commit Check the GPG signature of commits.
git verify-commit [-v | --verbose] commit … 
    --raw                 print raw gpg status output
verify-tag Check the GPG signature of tags.
git verify-tag [-v | --verbose] [--format=] tag …  
    --raw                 print raw gpg status output
    --format format>     format to use for the output
whatchanged Show logs with difference each commit introduces.
commit b933cfdc54de8df459b5d4222e3520a9a5b0caa5
Author: Scrin <Microx256@gmail.com>
Date:   Wed Oct 18 21:31:09 2017 +0300

    Fix Makefile for Windows platform. Remove nonexistent includes from bootloader Makefiles. 
            Update .gitignore to include the current SDK version.

:100644 100644 3a695ac... 8655b83... M  .gitignore
:100644 100644 cf5a25a... 0eba626... M  Makefile
:100644 100644 67273ae... 3b0a790... M  bootloader/ruuvitag_b3_debug/armgcc/Makefile
:100644 100644 11bc5dd... d534b8b... M  bootloader/ruuvitag_b3_production/armgcc/Makefile

commit 0d75552a4c746d3809caaa8727f87a0fb899cbcc
Author: Otso Jousimaa <
Date:   Fri Sep 8 11:34:52 2017 +0300

    Update join to slack instructions

:100644 100644 0223c6b... b63a6c9... M  README.md 
… 
commit 2330fef1cefc3317b205a544e05af69c06b161b0
Author: Lauri Jamsa <lauri.jamsa@ruuvipenkki.fi>
Date:   Mon Apr 20 18:00:47 2015 +0700

    Initial commit

:000000 100644 0000000... b91d5a4... A  README.md





gitweb Git web interface (web frontend to Git repositories).
help Display help information about Git.
Interacting with Others interact with foreign Source Control Managers (?) and with other people via patch over e-mail.
‡archimport Import an Arch repository into Git.
‡cvsexportcommit Export a single commit to a CVS checkout.
‡cvsimport Salvage your data out of another SCM people love to hate.
‡cvsserver A CVS server emulator for Git.
‡imap-send Send a collection of patches from stdin to an IMAP folder.
‡p4 Import from and submit to Perforce repositories.
‡quiltimport Applies a quilt patchset onto the current branch.
‡request-pull Generates a summary of pending changes.
‡send-email Send a collection of patches as emails.
‡svn Bidirectional operation between a Subversion repository and Git.

LOW-LEVEL COMMANDS (Plumbing)

Although Git includes its own porcelain layer, its low-level commands are sufficient to support development of alternative porcelains. Developers of such porcelains might start by reading about git-update-index(1) and git-readtree(1).

  1. manipulate objects (in the repository, index, and working tree),
  2. interrogate and compare objects, and
  3. move objects and references between repositories.

Manipulation commands

‡apply Apply a patch to files and/or to the index.
‡checkout-index Copy files from the index to the working tree.
‡commit-tree Create a new commit object.
‡hash-object Compute object ID and optionally creates a blob from a file.
‡index-pack Build pack index file for an existing packed archive.
‡merge-file Run a three-way file merge.
‡merge-index Run a merge for files needing merging.
‡mktag Creates a tag object.
‡mktree Build a tree-object from ls-tree formatted text.
‡pack-objects Create a packed archive of objects.
‡prune-packed Remove extra objects that are already in pack files.
‡read-tree Reads tree information into the index.
‡symbolic-ref Read, modify and delete symbolic refs.
‡unpack-objects Unpack objects from a packed archive.
‡update-index Register file contents in the working tree to the index.
‡update-ref Update the object name stored in a ref safely.
‡write-tree Create a tree object from the current index.

Interrogation commands

‡cat-file Provide content or type and size information for repository objects.
‡diff-files Compares files in the working tree and the index.
‡diff-index Compare a tree to the working tree or index.
‡diff-tree Compares the content and mode of blobs found via two tree objects.
‡for-each-ref Output information on each ref.
‡ls-files Show information about files in the index and the working tree.
‡ls-remote List references in a remote repository.
‡ls-tree List the contents of a tree object.
‡merge-base Find as good common ancestors as possible for a merge.
git-name-rev Find symbolic names for given revs.
‡pack-redundant Find redundant pack files.
‡rev-list Lists commit objects in reverse chronological order.
‡show-index Show packed archive index.
‡show-ref List references in a local repository.
‡unpack-file Creates a temporary file with a blob's contents.
‡var Show a Git logical variable.
‡verify-pack Validate packed Git archive files.

In general, the interrogate commands do not touch the files in the working tree.

Synching repositories

‡daemon server for repositories.
‡fetch-pack Receive missing objects from another repository.
‡http-backend Server side implementation of Git over HTTP.
‡send-pack Push objects over Git protocol to another repository.
‡update-server-info Update auxiliary info file to help dumb servers.

helper commands used with synching ; not used directly.

‡http-fetch Download from a remote repository
‡http-push Push objects over HTTP/DAV to another repository.
‡parse-remote Routines to help parsing remote repository access parameters.
‡receive-pack Receive what is pushed into the repository.
‡shell Restricted login shell for Git-only SSH access.
‡upload-archive Send archive back to git-archive.
‡upload-pack Send objects packed back to git-fetch-pack.

Internal helper commands

‡check-attr Display gitattributes information.
‡check-ignore Debug gitignore / exclude files.
ruuvi.endpoints.c/.gitignore
# Prerequisites *.d # Object files *.o *.ko *.obj *.elf # Linker output *.ilk *.map *.exp # Precompiled Headers *.gch *.pch # Libraries *.lib *.a *.la *.lo # Shared objects (inc. Windows DLLs) *.dll *.so *.so.* *.dylib # Executables *.exe *.out *.app *.i*86 *.x86_64 *.hex # Debug files *.dSYM/ *.su *.idb *.pdb # Kernel Module Compile Results *.mod* *.cmd .tmp_versions/ modules.order Module.symvers Mkfile.old dkms.conf # Mac OSX files .DS_Store # builds build/ # Autogenerated docs doxygen/ doxygen.error # PVS Studio intermediary files *.PVS-Studio.i *.PVS-Studio.log # Astyle backups *.orig # GCOV output

‡check-mailmap Show canonical names and email addresses of contacts.
‡check-ref-format Ensures that a reference name is well formed.
‡column Display data in columns.
‡credential Retrieve and store user credentials.
‡credential-cache Helper to temporarily store passwords in memory.
‡credential-store Helper to store credentials on disk.
‡fmt-merge-msg Produce a merge commit message.
‡interpret-trailers help add structured information into commit messages.
‡mailinfo Extracts patch and authorship from a single e-mail message.
‡mailsplit Simple UNIX mbox splitter program.
‡merge-one-file The standard helper program to use with git-merge-index.
git-patch-id Compute unique ID for a patch.
‡sh-i18n Git's i18n setup code for shell scripts.
‡sh-setup Common Git shell script setup code.
‡stripspace Remove unnecessary whitespace.

CONFIGURATION MECHANISM

Git uses a simple text format to store customizations that are per repository and are per user.

 #  or ; indicate a comment.

           ; core variables
           [core]
                   ; Don't trust file modes
                   filemode = false

           ; user identity
           [user]
                   name = "Junio C Hamano"
                   email = "gitster@pobox.com" 
Various commands read from the configuration file and adjust their operation accordingly. See git-config
[user]
    name = Dennis German
    email = DGermang@Real-World-Systems.com
[gui]
[gui]
[gui]
    recentrepo = /Volumes/DATA/dgerman/Documents/computerStuff/onion/gitRepo
[filter "lfs"]
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge -- %f
    process = git-lfs filter-process
    required = true

IDENTIFIER TERMINOLOGY

object the object name for any type of object.
blob a blob object name.
tree
commit
tree-ish a tree, commit or tag object name.
A command that takes a tree-ish argumen ultimately wants to operate on a tree object but automatically dereferences commit and tag objects that point at a tree.
commit-ish a commit or tag object name. A command that takes a commit-ish argument ultimately wants to operate on a commit object automatically dereferences tag objects that point at a commit.
type that an object type is required. one of: blob, tree, commit, or tag.
file

SYMBOLIC IDENTIFIERS

A command accepting object can also use symbolic notation:

HEAD indicates the head of the current branch.
tag a valid tag name (i.e. a refs/tags/tag reference).
head a valid head name (i.e. a refs/heads/head reference).
For a more complete list of ways to spell object names, see "SPECIFYING REVISIONS" section in gitrevisions(7). ,p>

FILE/DIRECTORY STRUCTURE

see gitrepository-layout(5).
Read githooks(5) .
Higher level SCMs may provide and manage additional information in the $GIT_DIR.

Environment Variables

The Git Repository These apply to all core Git commands.
may be used/overridden by SCMS sitting above Git

GIT_INDEX_FILE alternate index file. default $GIT_DIR/index
GIT_INDEX_VERSION for new repositories.
GIT_OBJECT_DIRECTORY default $GIT_DIR/objects
GIT_ALTERNATE_OBJECT_DIRECTORIES old objects can be archived into shared, read-only directories.
List of object directories ( : separated (on Windows ;)) to search. New objects will not be written to these directories.
If GIT_DIR is set then it specifies a path to use instead of the default .git for the base of the repository.
See --git-dir
GIT_WORK_TREE Set the path to the root of the working tree. This can also be controlled by the --work-tree command-line option and the core.worktree configuration variable.
GIT_NAMESPACE Set the Git namespace; see gitnamespaces(7) for details. The --namespace command-line option also sets this value.
GIT_CEILING_DIRECTORIES colon-separated list of absolute paths. of directories that Git should not chdir up into while looking for a repository directory (useful for excluding slow-loading network directories).
It will not exclude the current working directory or a $GIT_DIR. Normally, Git has to read the entries in this list and resolve any symlink that might be present in order to compare them with the current directory. if even this access is slow, you can add an empty entry to the list to tell Git that the subsequent entries are not symlinks and needn't be resolved; e.g., $GIT_CEILING_DIRECTORIES=/maybe/symlink::/very/slow/non/symlink.
GIT_DISCOVERY_ACROSS_FILESYSTEM When run in a directory that does not have ".git" repository directory, Git tries to find such a directory in the parent directories to find the top of the working tree, but by default it does not cross filesystem boundaries. Set to true to tell Git not to stop at filesystem boundaries. Like GIT_CEILING_DIRECTORIES, this will not affect an explicit repository directory set via GIT_DIR or on the command line.
GIT_COMMON_DIR non-worktree files normally in $GIT_DIR will be taken from this path
Worktree-specific files such as HEAD or index are taken from $GIT_DIR. See gitrepository-layout(5) and git-worktree(1) for details. lower precedence than other path variables such as $GIT_INDEX_FILE, $GIT_OBJECT_DIRECTORY... Git Commits GIT_AUTHOR_NAME, GIT_AUTHOR_EMAIL, GIT_AUTHOR_DATE, GIT_COMMITTER_NAME, GIT_COMMITTER_EMAIL, GIT_COMMITTER_DATE, EMAIL see git-commit-tree

Git Diffs

GIT_DIFF_OPTS Only valid setting is "--unified=??" or "-u??" to set the number of context lines shown when a unified diff is created. This takes precedence over any "-U" or "--unified" option value passed on the Git diff command line.
GIT_EXTERNAL_DIFF default diff
called with: path old-file old-hex old-mode new-file new-hex new-mode

old|new-hex 40-hexdigit SHA-1 hashes,

The file parameters can point at the user's working file (e.g. new-file in "git-diff-files"), /dev/null (e.g. old-file when a new file is added), or a temporary file (e.g. old-file in the index).
For a path that is unmerged, GIT_EXTERNAL_DIFF is called with 1 parameter, path.
For each path GIT_EXTERNAL_DIFF is called, GIT_DIFF_PATH_COUNTER and GIT_DIFF_PATH_TOTAL are set.

GIT_DIFF_PATH_COUNTER A 1-based counter incremented by one for every path.
GIT_DIFF_PATH_TOTAL The total number of paths.
other
GIT_MERGE_VERBOSITZ A number controlling the amount of output shown by the recursive merge strategy. Overrides merge.verbosity. See git-merge
GIT_PAGER overrides $PAGER. If it is set to an empty string or cat, Git will not launch a pager.
GIT_EDITOR overrides $EDITOR and $VISUAL.
GIT_SSH
GIT_SSH_COMMAND
git fetch and git push to connect to a remote system.
the [username@]host [-p port] from the URL and the shell command to execute .

$GIT_SSH_COMMAND takes precedence over $GIT_SSH, and is interpreted by the shell, which allows additional arguments to be included.
$GIT_SSH a program (which can be a wrapper shell script, if additional arguments are needed).
Usually it is easier to configure any options through .ssh/config.

GIT_ASKPASS program which prompts for password. Use STDOUT as password.
GIT_TERMINAL_PROMPT If 0, no prompt
GIT_CONFIG_NOSYSTEM skip reading settings from the system-wide $(prefix)/etc/gitconfig . This can be used along with $HOME and $XDG_CONFIG_HOME to create a predictable environment for a script, or
GIT_FLUSHif 1 git blame (in incremental mode), git rev-list, git log, git check-attr and git check-ignore will flush the output stream after each write.(Useful with pipes)
If 0 buffered I/O.
If is not set, buffered or record-oriented flushing based on if stdout appears to be redirected to a file
GIT_TRACE Enables general trace messages, e.g. alias expansion, built-in command execution and external command execution.
0 or false disables trace
1, 2 or true trace output to stderr>
3..10 a file descriptor
Absolute path (starting with / ),
GIT_TRACE_PACK_ACCESS Enables trace for accesses to any packs. For each access, the pack file name and an offset in the pack is recorded. For troubleshooting some pack-related performance problems.
GIT_TRACE_PACKET Enables trace for all packets coming in or out of a given program. For debugging object negotiation or other protocol issues. Tracing is turned off at a packet starting with "PACK" (but see GIT_TRACE_PACKFILE below).
GIT_TRACE_PACKFILE Enables tracing of packfiles sent or received by a given program.
no headers, and no quoting of binary data.
Use GIT_TRACE_PACKFILE=/tmp/my.pack . Only implemented for the client side of clones and fetches.
GIT_TRACE_PERFORMANCE Enables performance messages, e.g. total execution time
GIT_TRACE_SETUP Enables trace of the .git working tree and current working directory after setup phase.
GIT_TRACE_SHALLOW Enables trace to help debugging fetching / cloning of shallow repositories.
GIT_LITERAL_PATHSPECS if 1 pathspecs literally, rather than as glob patterns. For example, log -- '*.c' will search for commits that touch the path *.c, not glob *.c matches. useful for feeding literal paths to Git (e.g., paths previously given to you by git ls-tree, --raw diff output, etc).
GIT_GLOB_PATHSPECS 1: pathspecs as glob patterns (aka "glob" magic).
GIT_NOGLOB_PATHSPECS 1: pathspecs as literal (aka "literal" magic).
GIT_ICASE_PATHSPECS 1: treat all pathspecs as case-insensitive.:
GIT_REFLOG_ACTION When a ref is updated, reflog entries are created A scripted Porcelain command can use set_reflog_action in git-sh-setup to set its name to this variable when it is invoked as the top level command by the end user, to be recorded in the body of the reflog.
GIT_REF_PARANOIA 1: include broken or badly named refs when iterating over lists of refs.
In a normal, non-corrupted repository, does nothing. , enabling helps to detect and abort some operations in the presence of broken refs.
Set automatically when performing destructive operations like git-prune. You should not need to set it unless you want making sure an operation has touched every ref (e.g., because you are cloning a repository to make a backup).
GIT_ALLOW_PROTOCOL colon-separated list of protocols to be used with fetch/push/clone.
Useful to restrict recursive submodule initialization from an untrusted repository.
git the anonymous git protocol over a direct TCP connection
file local file-based path (including file:// URLs, or local paths)
ssh (including host:path syntax, git+ssh://, etc).
rsync
http both "smart http" and "dumb http". not include https; if you want both, you should specify both as http:https.
any external helpers are named by their protocol (e.g., use hg to allow the git-remote-hg helper)

DISCUSSION

user-manual[2] and gitcore- tutorial(7).

A Git project normally consists of a working directory with a ".git" subdirectory at the top level containing, object database representing the complete history of the project, an "index" file which links that history to the current contents of the working tree, and named pointers into that history such as tags and branch heads.

The object database contains objects : blobs, which hold file data; trees, which point to blobs and other trees to build up directory hierarchies; and commits, which each reference a single tree and some number of parent commits.

The commit, a "changeset" or "version", represents a step in the project's history, and each parent represents an immediately preceding step. Commits with more than one parent represent merges of independent lines of development.

Named pointers called refs mark interesting points in history. name of the most recent commit (or "head") of a branch under development. SHA-1 names of tags of interest are stored under ref/tags/. A special ref named HEAD contains the name of the currently checked-out branch.

The index file is initialized with a list of all paths and a blob object and a set of attributes.
The blob object represents the contents of the file as of the head of the current branch.
The attributes (last modified time, size, etc.) are taken from the corresponding file in the working tree. Subsequent changes to the working tree can be found by comparing these attributes. The index may be updated with new content, and new commits may be created from the content stored in the index.

The index is also capable of storing multiple entries (called "stages") for a given pathname,. used to hold the various unmerged version of a file when a merge is in progress.

Closing a pull request

further documentation

The concepts chapter of the user-manual and gitcore-tutorial provide introductions to the underlying architecture. gitworkflows(7) for an overview of recommended workflows. the howto[3]

Errors

SEE ALSO

gittutorial(7), gittutorial-2(7), giteveryday(7), gitcvs-migration(7), gitglossary(7), gitcore-tutorial(7), gitcli(7), The Git User's Manual[1], gitworkflows(7) 1. Git User's Manual git-htmldocs/user-manual.html
2. Git concepts chapter of the user-manual git-htmldocs/user-manual.html#git-concepts
3. Howto git-htmldocs/howto-index.html
4. Git API documentation git-htmldocs/technical/api-index.html
See git clone

die.net git workflow

WebFactory ssh