����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
git-update-ref(1)
=================
NAME
----
git-update-ref - Update the object name stored in a ref safely
SYNOPSIS
--------
[synopsis]
git update-ref [-m <reason>] [--no-deref] -d <ref> [<old-oid>]
git update-ref [-m <reason>] [--no-deref] [--create-reflog] <ref> <new-oid> [<old-oid>]
git update-ref [-m <reason>] [--no-deref] --stdin [-z] [--batch-updates]
DESCRIPTION
-----------
Given two arguments, stores the <new-oid> in the <ref>, possibly
dereferencing the symbolic refs. E.g. `git update-ref HEAD
<new-oid>` updates the current branch head to the new object.
Given three arguments, stores the <new-oid> in the <ref>,
possibly dereferencing the symbolic refs, after verifying that
the current value of the <ref> matches <old-oid>.
E.g. `git update-ref refs/heads/master <new-oid> <old-oid>`
updates the master branch head to <new-oid> only if its current
value is <old-oid>. You can specify 40 "0" or an empty string
as <old-oid> to make sure that the ref you are creating does
not exist.
The final arguments are object names; this command without any options
does not support updating a symbolic ref to point to another ref (see
linkgit:git-symbolic-ref[1]). But `git update-ref --stdin` does have
the `symref-*` commands so that regular refs and symbolic refs can be
committed in the same transaction.
If --no-deref is given, <ref> itself is overwritten, rather than
the result of following the symbolic pointers.
With `-d`, it deletes the named <ref> after verifying that it
still contains <old-oid>.
With `--stdin`, update-ref reads instructions from standard input and
performs all modifications together. Specify commands of the form:
update SP <ref> SP <new-oid> [SP <old-oid>] LF
create SP <ref> SP <new-oid> LF
delete SP <ref> [SP <old-oid>] LF
verify SP <ref> [SP <old-oid>] LF
symref-update SP <ref> SP <new-target> [SP (ref SP <old-target> | oid SP <old-oid>)] LF
symref-create SP <ref> SP <new-target> LF
symref-delete SP <ref> [SP <old-target>] LF
symref-verify SP <ref> [SP <old-target>] LF
option SP <opt> LF
start LF
prepare LF
commit LF
abort LF
With `--create-reflog`, update-ref will create a reflog for each ref
even if one would not ordinarily be created.
With `--batch-updates`, update-ref executes the updates in a batch but allows
individual updates to fail due to invalid or incorrect user input, applying only
the successful updates. However, system-related errors—such as I/O failures or
memory issues—will result in a full failure of all batched updates. Any failed
updates will be reported in the following format:
rejected SP (<old-oid> | <old-target>) SP (<new-oid> | <new-target>) SP <rejection-reason> LF
Quote fields containing whitespace as if they were strings in C source
code; i.e., surrounded by double-quotes and with backslash escapes.
Use 40 "0" characters or the empty string to specify a zero value. To
specify a missing value, omit the value and its preceding SP entirely.
Alternatively, use `-z` to specify in NUL-terminated format, without
quoting:
update SP <ref> NUL <new-oid> NUL [<old-oid>] NUL
create SP <ref> NUL <new-oid> NUL
delete SP <ref> NUL [<old-oid>] NUL
verify SP <ref> NUL [<old-oid>] NUL
symref-update SP <ref> NUL <new-target> [NUL (ref NUL <old-target> | oid NUL <old-oid>)] NUL
symref-create SP <ref> NUL <new-target> NUL
symref-delete SP <ref> [NUL <old-target>] NUL
symref-verify SP <ref> [NUL <old-target>] NUL
option SP <opt> NUL
start NUL
prepare NUL
commit NUL
abort NUL
In this format, use 40 "0" to specify a zero value, and use the empty
string to specify a missing value.
In either format, values can be specified in any form that Git
recognizes as an object name. Commands in any other format or a
repeated <ref> produce an error. Command meanings are:
update::
Set <ref> to <new-oid> after verifying <old-oid>, if given.
Specify a zero <new-oid> to ensure the ref does not exist
after the update and/or a zero <old-oid> to make sure the
ref does not exist before the update.
create::
Create <ref> with <new-oid> after verifying that it does not
exist. The given <new-oid> may not be zero.
delete::
Delete <ref> after verifying that it exists with <old-oid>, if
given. If given, <old-oid> may not be zero.
symref-update::
Set <ref> to <new-target> after verifying <old-target> or <old-oid>,
if given. Specify a zero <old-oid> to ensure that the ref does not
exist before the update.
verify::
Verify <ref> against <old-oid> but do not change it. If
<old-oid> is zero or missing, the ref must not exist.
symref-create:
Create symbolic ref <ref> with <new-target> after verifying that
it does not exist.
symref-delete::
Delete <ref> after verifying that it exists with <old-target>, if given.
symref-verify::
Verify symbolic <ref> against <old-target> but do not change it.
If <old-target> is missing, the ref must not exist. Can only be
used in `no-deref` mode.
option::
Modify the behavior of the next command naming a <ref>.
The only valid option is `no-deref` to avoid dereferencing
a symbolic ref.
start::
Start a transaction. In contrast to a non-transactional session, a
transaction will automatically abort if the session ends without an
explicit commit. This command may create a new empty transaction when
the current one has been committed or aborted already.
prepare::
Prepare to commit the transaction. This will create lock files for all
queued reference updates. If one reference could not be locked, the
transaction will be aborted.
commit::
Commit all reference updates queued for the transaction, ending the
transaction.
abort::
Abort the transaction, releasing all locks if the transaction is in
prepared state.
If all <ref>s can be locked with matching <old-oid>s
simultaneously, all modifications are performed. Otherwise, no
modifications are performed. Note that while each individual
<ref> is updated or deleted atomically, a concurrent reader may
still see a subset of the modifications.
LOGGING UPDATES
---------------
If config parameter "core.logAllRefUpdates" is true and the ref is one
under "refs/heads/", "refs/remotes/", "refs/notes/", or a pseudoref
like HEAD or ORIG_HEAD; or the file "$GIT_DIR/logs/<ref>" exists then
`git update-ref` will append a line to the log file
"$GIT_DIR/logs/<ref>" (dereferencing all symbolic refs before creating
the log name) describing the change in ref value. Log lines are
formatted as:
oldsha1 SP newsha1 SP committer LF
Where "oldsha1" is the 40 character hexadecimal value previously
stored in <ref>, "newsha1" is the 40 character hexadecimal value of
<new-oid> and "committer" is the committer's name, email address
and date in the standard Git committer ident format.
Optionally with -m:
oldsha1 SP newsha1 SP committer TAB message LF
Where all fields are as described above and "message" is the
value supplied to the -m option.
An update will fail (without changing <ref>) if the current user is
unable to create a new log file, append to the existing log file
or does not have committer information available.
NOTES
-----
Symbolic refs were initially implemented using symbolic links. This is
now deprecated since not all filesystems support symbolic links.
This command follows *real* symlinks only if they start with "refs/":
otherwise it will just try to read them and update them as a regular
file (i.e. it will allow the filesystem to follow them, but will
overwrite such a symlink to somewhere else with a regular filename).
SEE ALSO
--------
linkgit:git-symbolic-ref[1]
GIT
---
Part of the linkgit:git[1] suite
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| RelNotes | Folder | 0755 |
|
|
| contrib | Folder | 0755 |
|
|
| howto | Folder | 0755 |
|
|
| technical | Folder | 0755 |
|
|
| BreakingChanges.adoc | File | 16.64 KB | 0644 |
|
| BreakingChanges.html | File | 49.87 KB | 0644 |
|
| CODE_OF_CONDUCT.md | File | 5.85 KB | 0644 |
|
| DecisionMaking.adoc | File | 3.77 KB | 0644 |
|
| DecisionMaking.html | File | 34.35 KB | 0644 |
|
| MyFirstContribution.adoc | File | 55.2 KB | 0644 |
|
| MyFirstContribution.html | File | 106.17 KB | 0644 |
|
| MyFirstObjectWalk.adoc | File | 28.88 KB | 0644 |
|
| MyFirstObjectWalk.html | File | 73.09 KB | 0644 |
|
| README.md | File | 3.58 KB | 0644 |
|
| ReviewingGuidelines.adoc | File | 8.69 KB | 0644 |
|
| ReviewingGuidelines.html | File | 40.35 KB | 0644 |
|
| SubmittingPatches.adoc | File | 38.07 KB | 0644 |
|
| SubmittingPatches.html | File | 78.92 KB | 0644 |
|
| ToolsForGit.adoc | File | 1.32 KB | 0644 |
|
| ToolsForGit.html | File | 32.47 KB | 0644 |
|
| blame-options.adoc | File | 5.96 KB | 0644 |
|
| cmds-ancillaryinterrogators.adoc | File | 1.26 KB | 0644 |
|
| cmds-ancillarymanipulators.adoc | File | 796 B | 0644 |
|
| cmds-developerinterfaces.adoc | File | 678 B | 0644 |
|
| cmds-foreignscminterface.adoc | File | 399 B | 0644 |
|
| cmds-guide.adoc | File | 833 B | 0644 |
|
| cmds-mainporcelain.adoc | File | 3.01 KB | 0644 |
|
| cmds-plumbinginterrogators.adoc | File | 1.73 KB | 0644 |
|
| cmds-plumbingmanipulators.adoc | File | 1.47 KB | 0644 |
|
| cmds-purehelpers.adoc | File | 1.24 KB | 0644 |
|
| cmds-synchelpers.adoc | File | 449 B | 0644 |
|
| cmds-synchingrepositories.adoc | File | 397 B | 0644 |
|
| cmds-userinterfaces.adoc | File | 507 B | 0644 |
|
| config.adoc | File | 18.27 KB | 0644 |
|
| date-formats.adoc | File | 1.14 KB | 0644 |
|
| diff-context-options.adoc | File | 372 B | 0644 |
|
| diff-format.adoc | File | 6.44 KB | 0644 |
|
| diff-generate-patch.adoc | File | 7.02 KB | 0644 |
|
| diff-options.adoc | File | 33.21 KB | 0644 |
|
| docbook-xsl.css | File | 4.45 KB | 0644 |
|
| docinfo.html | File | 50 B | 0644 |
|
| everyday.html | File | 30.27 KB | 0644 |
|
| fetch-options.adoc | File | 12.36 KB | 0644 |
|
| for-each-ref-options.adoc | File | 3.02 KB | 0644 |
|
| fsck-msgids.adoc | File | 6.37 KB | 0644 |
|
| git-add.adoc | File | 15.64 KB | 0644 |
|
| git-add.html | File | 53.06 KB | 0644 |
|
| git-am.adoc | File | 9.39 KB | 0644 |
|
| git-am.html | File | 45.37 KB | 0644 |
|
| git-annotate.adoc | File | 772 B | 0644 |
|
| git-annotate.html | File | 40.83 KB | 0644 |
|
| git-apply.adoc | File | 10.89 KB | 0644 |
|
| git-apply.html | File | 45.13 KB | 0644 |
|
| git-archive.adoc | File | 8.27 KB | 0644 |
|
| git-archive.html | File | 42.43 KB | 0644 |
|
| git-backfill.adoc | File | 2.52 KB | 0644 |
|
| git-backfill.html | File | 33.77 KB | 0644 |
|
| git-bisect-lk2009.adoc | File | 48.53 KB | 0644 |
|
| git-bisect-lk2009.html | File | 91.41 KB | 0644 |
|
| git-bisect.adoc | File | 17.77 KB | 0644 |
|
| git-bisect.html | File | 53.82 KB | 0644 |
|
| git-blame.adoc | File | 8.66 KB | 0644 |
|
| git-blame.html | File | 53.85 KB | 0644 |
|
| git-branch.adoc | File | 15.67 KB | 0644 |
|
| git-branch.html | File | 62.71 KB | 0644 |
|
| git-bugreport.adoc | File | 2.51 KB | 0644 |
|
| git-bugreport.html | File | 33.75 KB | 0644 |
|
| git-bundle.adoc | File | 13 KB | 0644 |
|
| git-bundle.html | File | 47.71 KB | 0644 |
|
| git-cat-file.adoc | File | 14.66 KB | 0644 |
|
| git-cat-file.html | File | 51.94 KB | 0644 |
|
| git-check-attr.adoc | File | 3.32 KB | 0644 |
|
| git-check-attr.html | File | 35.31 KB | 0644 |
|
| git-check-ignore.adoc | File | 4.06 KB | 0644 |
|
| git-check-ignore.html | File | 36.04 KB | 0644 |
|
| git-check-mailmap.adoc | File | 1.54 KB | 0644 |
|
| git-check-mailmap.html | File | 32.63 KB | 0644 |
|
| git-check-ref-format.adoc | File | 4.93 KB | 0644 |
|
| git-check-ref-format.html | File | 36.9 KB | 0644 |
|
| git-checkout-index.adoc | File | 5.54 KB | 0644 |
|
| git-checkout-index.html | File | 38 KB | 0644 |
|
| git-checkout.adoc | File | 21.72 KB | 0644 |
|
| git-checkout.html | File | 66.35 KB | 0644 |
|
| git-cherry-pick.adoc | File | 8.97 KB | 0644 |
|
| git-cherry-pick.html | File | 43.87 KB | 0644 |
|
| git-cherry.adoc | File | 3.53 KB | 0644 |
|
| git-cherry.html | File | 35.42 KB | 0644 |
|
| git-clean.adoc | File | 4.63 KB | 0644 |
|
| git-clean.html | File | 36.81 KB | 0644 |
|
| git-clone.adoc | File | 15.88 KB | 0644 |
|
| git-clone.html | File | 60.38 KB | 0644 |
|
| git-column.adoc | File | 2.15 KB | 0644 |
|
| git-column.html | File | 35.98 KB | 0644 |
|
| git-commit-graph.adoc | File | 5.89 KB | 0644 |
|
| git-commit-graph.html | File | 41.03 KB | 0644 |
|
| git-commit-tree.adoc | File | 2.65 KB | 0644 |
|
| git-commit-tree.html | File | 39.44 KB | 0644 |
|
| git-commit.adoc | File | 21.16 KB | 0644 |
|
| git-commit.html | File | 70.5 KB | 0644 |
|
| git-config.adoc | File | 20.88 KB | 0644 |
|
| git-config.html | File | 445.55 KB | 0644 |
|
| git-contacts.adoc | File | 2.52 KB | 0644 |
|
| git-contacts.html | File | 33.92 KB | 0644 |
|
| git-count-objects.adoc | File | 1.35 KB | 0644 |
|
| git-count-objects.html | File | 32.25 KB | 0644 |
|
| git-credential-cache--daemon.adoc | File | 891 B | 0644 |
|
| git-credential-cache--daemon.html | File | 31.46 KB | 0644 |
|
| git-credential-cache.adoc | File | 3.12 KB | 0644 |
|
| git-credential-cache.html | File | 34.16 KB | 0644 |
|
| git-credential-store.adoc | File | 3.55 KB | 0644 |
|
| git-credential-store.html | File | 35.03 KB | 0644 |
|
| git-credential.adoc | File | 11.95 KB | 0644 |
|
| git-credential.html | File | 45.38 KB | 0644 |
|
| git-describe.adoc | File | 8.12 KB | 0644 |
|
| git-describe.html | File | 40.6 KB | 0644 |
|
| git-diagnose.adoc | File | 2.16 KB | 0644 |
|
| git-diagnose.html | File | 33.22 KB | 0644 |
|
| git-diff-files.adoc | File | 1.2 KB | 0644 |
|
| git-diff-files.html | File | 92.09 KB | 0644 |
|
| git-diff-index.adoc | File | 4.7 KB | 0644 |
|
| git-diff-index.html | File | 97.13 KB | 0644 |
|
| git-diff-pairs.adoc | File | 1.96 KB | 0644 |
|
| git-diff-pairs.html | File | 83.75 KB | 0644 |
|
| git-diff-tree.adoc | File | 4.09 KB | 0644 |
|
| git-diff-tree.html | File | 126.96 KB | 0644 |
|
| git-diff.adoc | File | 8.28 KB | 0644 |
|
| git-diff.html | File | 119.69 KB | 0644 |
|
| git-difftool.adoc | File | 4.49 KB | 0644 |
|
| git-difftool.html | File | 42.05 KB | 0644 |
|
| git-fast-export.adoc | File | 12.37 KB | 0644 |
|
| git-fast-export.html | File | 45.54 KB | 0644 |
|
| git-fast-import.adoc | File | 61.52 KB | 0644 |
|
| git-fast-import.html | File | 114.47 KB | 0644 |
|
| git-fetch-pack.adoc | File | 4.14 KB | 0644 |
|
| git-fetch-pack.html | File | 35.78 KB | 0644 |
|
| git-fetch.adoc | File | 11.54 KB | 0644 |
|
| git-fetch.html | File | 88.96 KB | 0644 |
|
| git-filter-branch.adoc | File | 30.3 KB | 0644 |
|
| git-filter-branch.html | File | 65.75 KB | 0644 |
|
| git-fmt-merge-msg.adoc | File | 1.9 KB | 0644 |
|
| git-fmt-merge-msg.html | File | 34.3 KB | 0644 |
|
| git-for-each-ref.adoc | File | 15.81 KB | 0644 |
|
| git-for-each-ref.html | File | 60.05 KB | 0644 |
|
| git-for-each-repo.adoc | File | 1.9 KB | 0644 |
|
| git-for-each-repo.html | File | 33.09 KB | 0644 |
|
| git-format-patch.adoc | File | 29.21 KB | 0644 |
|
| git-format-patch.html | File | 94.24 KB | 0644 |
|
| git-fsck-objects.adoc | File | 354 B | 0644 |
|
| git-fsck-objects.html | File | 30.7 KB | 0644 |
|
| git-fsck.adoc | File | 5.99 KB | 0644 |
|
| git-fsck.html | File | 53.52 KB | 0644 |
|
| git-fsmonitor--daemon.adoc | File | 3.53 KB | 0644 |
|
| git-fsmonitor--daemon.html | File | 35.9 KB | 0644 |
|
| git-gc.adoc | File | 6.59 KB | 0644 |
|
| git-gc.html | File | 49.01 KB | 0644 |
|
| git-get-tar-commit-id.adoc | File | 753 B | 0644 |
|
| git-get-tar-commit-id.html | File | 31.12 KB | 0644 |
|
| git-grep.adoc | File | 11.05 KB | 0644 |
|
| git-grep.html | File | 47.94 KB | 0644 |
|
| git-hash-object.adoc | File | 2.09 KB | 0644 |
|
| git-hash-object.html | File | 32.91 KB | 0644 |
|
| git-help.adoc | File | 7.35 KB | 0644 |
|
| git-help.html | File | 40.88 KB | 0644 |
|
| git-hook.adoc | File | 1 KB | 0644 |
|
| git-hook.html | File | 31.95 KB | 0644 |
|
| git-http-backend.adoc | File | 11.36 KB | 0644 |
|
| git-http-backend.html | File | 43.53 KB | 0644 |
|
| git-http-fetch.adoc | File | 1.74 KB | 0644 |
|
| git-http-fetch.html | File | 32.71 KB | 0644 |
|
| git-http-push.adoc | File | 2.92 KB | 0644 |
|
| git-http-push.html | File | 34.32 KB | 0644 |
|
| git-imap-send.adoc | File | 6.46 KB | 0644 |
|
| git-imap-send.html | File | 42.43 KB | 0644 |
|
| git-index-pack.adoc | File | 6.15 KB | 0644 |
|
| git-index-pack.html | File | 38.61 KB | 0644 |
|
| git-init-db.adoc | File | 409 B | 0644 |
|
| git-init-db.html | File | 30.76 KB | 0644 |
|
| git-init.adoc | File | 6.08 KB | 0644 |
|
| git-init.html | File | 41.3 KB | 0644 |
|
| git-interpret-trailers.adoc | File | 12.54 KB | 0644 |
|
| git-interpret-trailers.html | File | 53.71 KB | 0644 |
|
| git-last-modified.adoc | File | 1.33 KB | 0644 |
|
| git-last-modified.html | File | 32.41 KB | 0644 |
|
| git-log.adoc | File | 6.79 KB | 0644 |
|
| git-log.html | File | 191.76 KB | 0644 |
|
| git-ls-files.adoc | File | 11.83 KB | 0644 |
|
| git-ls-files.html | File | 47 KB | 0644 |
|
| git-ls-remote.adoc | File | 5.01 KB | 0644 |
|
| git-ls-remote.html | File | 37.24 KB | 0644 |
|
| git-ls-tree.adoc | File | 5.39 KB | 0644 |
|
| git-ls-tree.html | File | 38.16 KB | 0644 |
|
| git-mailinfo.adoc | File | 3.78 KB | 0644 |
|
| git-mailinfo.html | File | 36.02 KB | 0644 |
|
| git-mailsplit.adoc | File | 1.31 KB | 0644 |
|
| git-mailsplit.html | File | 32.31 KB | 0644 |
|
| git-maintenance.adoc | File | 19.28 KB | 0644 |
|
| git-maintenance.html | File | 64.48 KB | 0644 |
|
| git-merge-base.adoc | File | 7.58 KB | 0644 |
|
| git-merge-base.html | File | 41.4 KB | 0644 |
|
| git-merge-file.adoc | File | 3.98 KB | 0644 |
|
| git-merge-file.html | File | 36.22 KB | 0644 |
|
| git-merge-index.adoc | File | 2.39 KB | 0644 |
|
| git-merge-index.html | File | 33.51 KB | 0644 |
|
| git-merge-one-file.adoc | File | 387 B | 0644 |
|
| git-merge-one-file.html | File | 30.72 KB | 0644 |
|
| git-merge-tree.adoc | File | 12.62 KB | 0644 |
|
| git-merge-tree.html | File | 47.06 KB | 0644 |
|
| git-merge.adoc | File | 14.79 KB | 0644 |
|
| git-merge.html | File | 83.48 KB | 0644 |
|
| git-mergetool--lib.adoc | File | 1.43 KB | 0644 |
|
| git-mergetool--lib.html | File | 32.23 KB | 0644 |
|
| git-mergetool.adoc | File | 4.41 KB | 0644 |
|
| git-mergetool.html | File | 53.3 KB | 0644 |
|
| git-mktag.adoc | File | 1.74 KB | 0644 |
|
| git-mktag.html | File | 33.01 KB | 0644 |
|
| git-mktree.adoc | File | 1.05 KB | 0644 |
|
| git-mktree.html | File | 31.64 KB | 0644 |
|
| git-multi-pack-index.adoc | File | 5.03 KB | 0644 |
|
| git-multi-pack-index.html | File | 37 KB | 0644 |
|
| git-mv.adoc | File | 2.04 KB | 0644 |
|
| git-mv.html | File | 33.39 KB | 0644 |
|
| git-name-rev.adoc | File | 3.27 KB | 0644 |
|
| git-name-rev.html | File | 34.5 KB | 0644 |
|
| git-notes.adoc | File | 14 KB | 0644 |
|
| git-notes.html | File | 56.05 KB | 0644 |
|
| git-pack-objects.adoc | File | 21.46 KB | 0644 |
|
| git-pack-objects.html | File | 56.16 KB | 0644 |
|
| git-pack-redundant.adoc | File | 1.83 KB | 0644 |
|
| git-pack-redundant.html | File | 33.01 KB | 0644 |
|
| git-pack-refs.adoc | File | 1.66 KB | 0644 |
|
| git-pack-refs.html | File | 35.09 KB | 0644 |
|
| git-patch-id.adoc | File | 2.37 KB | 0644 |
|
| git-patch-id.html | File | 33.47 KB | 0644 |
|
| git-prune-packed.adoc | File | 946 B | 0644 |
|
| git-prune-packed.html | File | 31.75 KB | 0644 |
|
| git-prune.adoc | File | 1.87 KB | 0644 |
|
| git-prune.html | File | 33.37 KB | 0644 |
|
| git-pull.adoc | File | 7.7 KB | 0644 |
|
| git-pull.html | File | 90.41 KB | 0644 |
|
| git-push.adoc | File | 28.59 KB | 0644 |
|
| git-push.html | File | 90 KB | 0644 |
|
| git-quiltimport.adoc | File | 1.65 KB | 0644 |
|
| git-quiltimport.html | File | 32.57 KB | 0644 |
|
| git-range-diff.adoc | File | 10.72 KB | 0644 |
|
| git-range-diff.html | File | 45.43 KB | 0644 |
|
| git-read-tree.adoc | File | 16.52 KB | 0644 |
|
| git-read-tree.html | File | 51.16 KB | 0644 |
|
| git-rebase.adoc | File | 45.65 KB | 0644 |
|
| git-rebase.html | File | 106.94 KB | 0644 |
|
| git-receive-pack.adoc | File | 9.98 KB | 0644 |
|
| git-receive-pack.html | File | 43.53 KB | 0644 |
|
| git-reflog.adoc | File | 5.52 KB | 0644 |
|
| git-reflog.html | File | 38.51 KB | 0644 |
|
| git-refs.adoc | File | 3.22 KB | 0644 |
|
| git-refs.html | File | 43.37 KB | 0644 |
|
| git-remote-ext.adoc | File | 3.88 KB | 0644 |
|
| git-remote-ext.html | File | 35.66 KB | 0644 |
|
| git-remote-fd.adoc | File | 1.59 KB | 0644 |
|
| git-remote-fd.html | File | 32.82 KB | 0644 |
|
| git-remote-helpers.html | File | 30.25 KB | 0644 |
|
| git-remote.adoc | File | 8.56 KB | 0644 |
|
| git-remote.html | File | 43.07 KB | 0644 |
|
| git-repack.adoc | File | 11.2 KB | 0644 |
|
| git-repack.html | File | 45.04 KB | 0644 |
|
| git-replace.adoc | File | 5.09 KB | 0644 |
|
| git-replace.html | File | 37.54 KB | 0644 |
|
| git-replay.adoc | File | 4.29 KB | 0644 |
|
| git-replay.html | File | 90.78 KB | 0644 |
|
| git-repo.adoc | File | 3.36 KB | 0644 |
|
| git-repo.html | File | 35.99 KB | 0644 |
|
| git-request-pull.adoc | File | 1.99 KB | 0644 |
|
| git-request-pull.html | File | 33.35 KB | 0644 |
|
| git-rerere.adoc | File | 7.6 KB | 0644 |
|
| git-rerere.html | File | 39.92 KB | 0644 |
|
| git-reset.adoc | File | 18.78 KB | 0644 |
|
| git-reset.html | File | 57.85 KB | 0644 |
|
| git-restore.adoc | File | 6.9 KB | 0644 |
|
| git-restore.html | File | 41.63 KB | 0644 |
|
| git-rev-list.adoc | File | 3.15 KB | 0644 |
|
| git-rev-list.html | File | 129.4 KB | 0644 |
|
| git-rev-parse.adoc | File | 16.64 KB | 0644 |
|
| git-rev-parse.html | File | 74.9 KB | 0644 |
|
| git-revert.adoc | File | 5.3 KB | 0644 |
|
| git-revert.html | File | 39.11 KB | 0644 |
|
| git-rm.adoc | File | 7.11 KB | 0644 |
|
| git-rm.html | File | 40.73 KB | 0644 |
|
| git-send-pack.adoc | File | 5.05 KB | 0644 |
|
| git-send-pack.html | File | 37.18 KB | 0644 |
|
| git-sh-i18n--envsubst.adoc | File | 928 B | 0644 |
|
| git-sh-i18n--envsubst.html | File | 31.46 KB | 0644 |
|
| git-sh-i18n.adoc | File | 1.12 KB | 0644 |
|
| git-sh-i18n.html | File | 31.79 KB | 0644 |
|
| git-sh-setup.adoc | File | 2.91 KB | 0644 |
|
| git-sh-setup.html | File | 34.1 KB | 0644 |
|
| git-shell.adoc | File | 2.91 KB | 0644 |
|
| git-shell.html | File | 34.49 KB | 0644 |
|
| git-shortlog.adoc | File | 4.31 KB | 0644 |
|
| git-shortlog.html | File | 75.95 KB | 0644 |
|
| git-show-branch.adoc | File | 6.44 KB | 0644 |
|
| git-show-branch.html | File | 39.05 KB | 0644 |
|
| git-show-index.adoc | File | 1.46 KB | 0644 |
|
| git-show-index.html | File | 32.71 KB | 0644 |
|
| git-show-ref.adoc | File | 6.6 KB | 0644 |
|
| git-show-ref.html | File | 38.82 KB | 0644 |
|
| git-show.adoc | File | 1.89 KB | 0644 |
|
| git-show.html | File | 122.94 KB | 0644 |
|
| git-sparse-checkout.adoc | File | 22.22 KB | 0644 |
|
| git-sparse-checkout.html | File | 58.47 KB | 0644 |
|
| git-stage.adoc | File | 299 B | 0644 |
|
| git-stage.html | File | 30.65 KB | 0644 |
|
| git-stash.adoc | File | 15.76 KB | 0644 |
|
| git-stash.html | File | 55 KB | 0644 |
|
| git-status.adoc | File | 19.9 KB | 0644 |
|
| git-status.html | File | 57.21 KB | 0644 |
|
| git-stripspace.adoc | File | 1.92 KB | 0644 |
|
| git-stripspace.html | File | 33.1 KB | 0644 |
|
| git-submodule.adoc | File | 21.1 KB | 0644 |
|
| git-submodule.html | File | 57.83 KB | 0644 |
|
| git-switch.adoc | File | 8.69 KB | 0644 |
|
| git-switch.html | File | 46.37 KB | 0644 |
|
| git-symbolic-ref.adoc | File | 2.32 KB | 0644 |
|
| git-symbolic-ref.html | File | 33.72 KB | 0644 |
|
| git-tag.adoc | File | 14.63 KB | 0644 |
|
| git-tag.html | File | 55.53 KB | 0644 |
|
| git-tools.adoc | File | 422 B | 0644 |
|
| git-tools.html | File | 30.48 KB | 0644 |
|
| git-unpack-file.adoc | File | 434 B | 0644 |
|
| git-unpack-file.html | File | 30.91 KB | 0644 |
|
| git-unpack-objects.adoc | File | 1.19 KB | 0644 |
|
| git-unpack-objects.html | File | 31.94 KB | 0644 |
|
| git-update-index.adoc | File | 23.48 KB | 0644 |
|
| git-update-index.html | File | 61.22 KB | 0644 |
|
| git-update-ref.adoc | File | 7.43 KB | 0644 |
|
| git-update-ref.html | File | 40.78 KB | 0644 |
|
| git-update-server-info.adoc | File | 801 B | 0644 |
|
| git-update-server-info.html | File | 31.48 KB | 0644 |
|
| git-upload-archive.adoc | File | 2.04 KB | 0644 |
|
| git-upload-archive.html | File | 33.03 KB | 0644 |
|
| git-upload-pack.adoc | File | 2.94 KB | 0644 |
|
| git-upload-pack.html | File | 34.59 KB | 0644 |
|
| git-var.adoc | File | 3.07 KB | 0644 |
|
| git-var.html | File | 34.64 KB | 0644 |
|
| git-verify-commit.adoc | File | 573 B | 0644 |
|
| git-verify-commit.html | File | 31.24 KB | 0644 |
|
| git-verify-pack.adoc | File | 1.05 KB | 0644 |
|
| git-verify-pack.html | File | 32.14 KB | 0644 |
|
| git-verify-tag.adoc | File | 564 B | 0644 |
|
| git-verify-tag.html | File | 31.25 KB | 0644 |
|
| git-version.adoc | File | 1.01 KB | 0644 |
|
| git-version.html | File | 31.72 KB | 0644 |
|
| git-web--browse.adoc | File | 3.49 KB | 0644 |
|
| git-web--browse.html | File | 35.36 KB | 0644 |
|
| git-whatchanged.adoc | File | 1.27 KB | 0644 |
|
| git-whatchanged.html | File | 32.38 KB | 0644 |
|
| git-worktree.adoc | File | 21.01 KB | 0644 |
|
| git-worktree.html | File | 61.82 KB | 0644 |
|
| git-write-tree.adoc | File | 1.01 KB | 0644 |
|
| git-write-tree.html | File | 31.81 KB | 0644 |
|
| git.adoc | File | 44.78 KB | 0644 |
|
| git.html | File | 114.58 KB | 0644 |
|
| gitattributes.adoc | File | 49.31 KB | 0644 |
|
| gitattributes.html | File | 93.83 KB | 0644 |
|
| gitcli.adoc | File | 11.05 KB | 0644 |
|
| gitcli.html | File | 44.96 KB | 0644 |
|
| gitcore-tutorial.adoc | File | 60.78 KB | 0644 |
|
| gitcore-tutorial.html | File | 110.5 KB | 0644 |
|
| gitcredentials.adoc | File | 11.9 KB | 0644 |
|
| gitcredentials.html | File | 45.7 KB | 0644 |
|
| gitdiffcore.adoc | File | 13.75 KB | 0644 |
|
| gitdiffcore.html | File | 46.27 KB | 0644 |
|
| giteveryday.adoc | File | 14.08 KB | 0644 |
|
| giteveryday.html | File | 50.45 KB | 0644 |
|
| gitfaq.adoc | File | 25.85 KB | 0644 |
|
| gitfaq.html | File | 62.81 KB | 0644 |
|
| gitformat-bundle.adoc | File | 3.18 KB | 0644 |
|
| gitformat-bundle.html | File | 34.5 KB | 0644 |
|
| gitformat-chunk.adoc | File | 5.43 KB | 0644 |
|
| gitformat-chunk.html | File | 37.63 KB | 0644 |
|
| gitformat-commit-graph.adoc | File | 7.9 KB | 0644 |
|
| gitformat-commit-graph.html | File | 40.99 KB | 0644 |
|
| gitformat-index.adoc | File | 14.82 KB | 0644 |
|
| gitformat-index.html | File | 51.26 KB | 0644 |
|
| gitformat-loose.adoc | File | 1.82 KB | 0644 |
|
| gitformat-loose.html | File | 32.63 KB | 0644 |
|
| gitformat-pack.adoc | File | 26.6 KB | 0644 |
|
| gitformat-pack.html | File | 66.8 KB | 0644 |
|
| gitformat-signature.adoc | File | 7.9 KB | 0644 |
|
| gitformat-signature.html | File | 40.45 KB | 0644 |
|
| gitglossary.adoc | File | 359 B | 0644 |
|
| gitglossary.html | File | 72.52 KB | 0644 |
|
| githooks.adoc | File | 28.95 KB | 0644 |
|
| githooks.html | File | 69.51 KB | 0644 |
|
| gitignore.adoc | File | 8.99 KB | 0644 |
|
| gitignore.html | File | 41.23 KB | 0644 |
|
| gitmailmap.adoc | File | 3.47 KB | 0644 |
|
| gitmailmap.html | File | 35.82 KB | 0644 |
|
| gitmodules.adoc | File | 4.69 KB | 0644 |
|
| gitmodules.html | File | 36.81 KB | 0644 |
|
| gitnamespaces.adoc | File | 2.45 KB | 0644 |
|
| gitnamespaces.html | File | 35.24 KB | 0644 |
|
| gitpacking.adoc | File | 7.29 KB | 0644 |
|
| gitpacking.html | File | 45.18 KB | 0644 |
|
| gitprotocol-capabilities.adoc | File | 14.95 KB | 0644 |
|
| gitprotocol-capabilities.html | File | 49.99 KB | 0644 |
|
| gitprotocol-common.adoc | File | 3.1 KB | 0644 |
|
| gitprotocol-common.html | File | 34.55 KB | 0644 |
|
| gitprotocol-http.adoc | File | 17.57 KB | 0644 |
|
| gitprotocol-http.html | File | 55.35 KB | 0644 |
|
| gitprotocol-pack.adoc | File | 27.03 KB | 0644 |
|
| gitprotocol-pack.html | File | 64.46 KB | 0644 |
|
| gitprotocol-v2.adoc | File | 34.75 KB | 0644 |
|
| gitprotocol-v2.html | File | 75.14 KB | 0644 |
|
| gitremote-helpers.adoc | File | 21.15 KB | 0644 |
|
| gitremote-helpers.html | File | 58.39 KB | 0644 |
|
| gitrepository-layout.adoc | File | 11.61 KB | 0644 |
|
| gitrepository-layout.html | File | 48.94 KB | 0644 |
|
| gitrevisions.adoc | File | 824 B | 0644 |
|
| gitrevisions.html | File | 53.22 KB | 0644 |
|
| gitsubmodules.adoc | File | 10.13 KB | 0644 |
|
| gitsubmodules.html | File | 44.44 KB | 0644 |
|
| gittutorial-2.adoc | File | 14.4 KB | 0644 |
|
| gittutorial-2.html | File | 46.91 KB | 0644 |
|
| gittutorial.adoc | File | 22.43 KB | 0644 |
|
| gittutorial.html | File | 58.15 KB | 0644 |
|
| gitworkflows.adoc | File | 17.01 KB | 0644 |
|
| gitworkflows.html | File | 53.02 KB | 0644 |
|
| glossary-content.adoc | File | 32.31 KB | 0644 |
|
| howto-index.adoc | File | 3.91 KB | 0644 |
|
| howto-index.html | File | 36.01 KB | 0644 |
|
| i18n.adoc | File | 2.87 KB | 0644 |
|
| line-range-format.adoc | File | 1.15 KB | 0644 |
|
| line-range-options.adoc | File | 766 B | 0644 |
|
| merge-options.adoc | File | 7.26 KB | 0644 |
|
| merge-strategies.adoc | File | 6.36 KB | 0644 |
|
| mergetools-diff.adoc | File | 1.54 KB | 0644 |
|
| mergetools-merge.adoc | File | 2.6 KB | 0644 |
|
| object-format-disclaimer.adoc | File | 470 B | 0644 |
|
| pack-refs-options.adoc | File | 2.12 KB | 0644 |
|
| pretty-formats.adoc | File | 15.43 KB | 0644 |
|
| pretty-options.adoc | File | 4.43 KB | 0644 |
|
| pull-fetch-param.adoc | File | 5.44 KB | 0644 |
|
| ref-reachability-filters.adoc | File | 391 B | 0644 |
|
| ref-storage-format.adoc | File | 174 B | 0644 |
|
| rerere-options.adoc | File | 418 B | 0644 |
|
| rev-list-description.adoc | File | 2.47 KB | 0644 |
|
| rev-list-options.adoc | File | 48.59 KB | 0644 |
|
| revisions.adoc | File | 16.71 KB | 0644 |
|
| scalar.adoc | File | 7.27 KB | 0644 |
|
| scalar.html | File | 40.73 KB | 0644 |
|
| sequencer.adoc | File | 472 B | 0644 |
|
| signoff-option.adoc | File | 791 B | 0644 |
|
| trace2-target-values.adoc | File | 529 B | 0644 |
|
| transfer-data-leaks.adoc | File | 1.67 KB | 0644 |
|
| urls-remotes.adoc | File | 4.33 KB | 0644 |
|
| urls.adoc | File | 3.38 KB | 0644 |
|
| user-manual.adoc | File | 170.59 KB | 0644 |
|
| user-manual.html | File | 275.1 KB | 0644 |
|