Files
tldr/pages.ja/common/git.md
K.B.Dharun Krishna 8538a31451 pages/*: add standard translation and links (#11331)
* pages/*: add standard translation and links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix1: false positives; standardize Bengali, Hindi, Nepali periods

* fix: periods in recently added Bengali pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix: false positives in modified files

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: update to native period in Bengali l10n

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:31 +05:30

978 B

git

分散型バージョン管理システム いくつかのサブコマンドがあります。例えば commit, add, branch, checkout, push, などです。 これらには使用方法についての独自のドキュメントがあり、 tldr git subcommand で見ることができます。 詳しくはこちら: https://git-scm.com/

  • Gitのバージョンを確認する:

git --version

  • Git全体のヘルプを見る:

git --help

  • Gitのサブコマンドのヘルプを見る (例えば clone, add, push, log, など):

git help {{サブコマンド}}

  • Gitのサブコマンドを実行する:

git {{サブコマンド}}

  • Gitのサブコマンドを、任意のリポジトリのルートパスを指定して実行する:

git -C {{ディレクトリパス}} {{サブコマンド}}

  • Gitのサブコマンドを、指定された設定値で実行する:

git -c '{{config.key}}={{値}}' {{サブコマンド}}