diff options
author | Michael Polzer <hashrate@pm-tech.at> | 2020-04-03 12:52:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 12:52:36 +0200 |
commit | 4928a995e9799c6c7ea84fa1efc4fef5b2ff7683 (patch) | |
tree | bff78a3af619a7c7cffef45fa9a13294d18176b8 /doc | |
parent | be60e37e40413742a8e23c854b90438af5e3aabc (diff) |
[doc] fix git add argument
error: unknown switch `a'
usage: git add [<options>] [--] <pathspec>...
-n, --dry-run dry run
-v, --verbose be verbose
-i, --interactive interactive picking
-p, --patch select hunks interactively
-e, --edit edit current diff and apply
-f, --force allow adding otherwise ignored files
-u, --update update tracked files
--renormalize renormalize EOL of tracked files (implies -u)
-N, --intent-to-add record only the fact that the path will be added later
-A, --all add changes from all tracked and untracked files
--ignore-removal ignore paths removed in the working tree (same as --no-all)
--refresh don't add, only refresh the index
--ignore-errors just skip files which cannot be added because of errors
--ignore-missing check if - even missing - files are ignored in dry run
--chmod (+|-)x override the executable bit of the listed files
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-process.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/release-process.md b/doc/release-process.md index e0f29f6ad7..a61b67c35f 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -219,7 +219,7 @@ Codesigner only: Commit the detached codesign payloads: rm -rf * tar xf signature-osx.tar.gz tar xf signature-win.tar.gz - git add -a + git add -A git commit -m "point to ${VERSION}" git tag -s v${VERSION} HEAD git push the current branch and new tag |