web-dev-qa-db-ja.com

ターミナルで 'git status'リストを終了するにはどうすればいいですか?

私はGitとその端末に不慣れです。 git statusコマンドによって生成されたリストモードを終了するにはどうすればよいですか?

292
Luis Martins

私はここで推測しなければなりませんが、おそらくgitはあなたの$ PAGERプログラム、おそらくlessまたはmoreにその出力を実行しています。どちらの場合も、入力 q あなたを連れ出すべきです.

433
Carl Smotricz
:q

これは実際には より少ない コマンドです。 vi と同じコマンドを使います。

139
RageZ

'q'をタイプすればそれは仕事をします。

あなたが端末にいて同じような苦境を抱えているときはいつでも、 'quit'、 'exit'、打ち切りキーの組み合わせ 'Ctrl + C'を試してみることを心に留めておいてください。

99
allesklar

windowsの場合

実行状態を終了するには、Ctrl + qとcを押します。

12
gem007bd

私が好むコンボはGqで、これはすべての差分を表示してから終了します。

hと入力すると、lessと対話するためのヘルプコマンドが表示されます。これは、コンソールに表示されます。

                   SUMMARY OF LESS COMMANDS

      Commands marked with * may be preceded by a number, N.
      Notes in parentheses indicate the behavior if N is given.

  h  H                 Display this help.
  q  :q  Q  :Q  ZZ     Exit.
 ---------------------------------------------------------------------------

                           MOVING

  e  ^E  j  ^N  CR  *  Forward  one line   (or N lines).
  y  ^Y  k  ^K  ^P  *  Backward one line   (or N lines).
  f  ^F  ^V  SPACE  *  Forward  one window (or N lines).
  b  ^B  ESC-v      *  Backward one window (or N lines).
  z                 *  Forward  one window (and set window to N).
  w                 *  Backward one window (and set window to N).
  ESC-SPACE         *  Forward  one window, but don't stop at end-of-file.
  d  ^D             *  Forward  one half-window (and set half-window to N).
  u  ^U             *  Backward one half-window (and set half-window to N).
  ESC-)  RightArrow *  Left  one half screen width (or N positions).
  ESC-(  LeftArrow  *  Right one half screen width (or N positions).
  F                    Forward forever; like "tail -f".
  r  ^R  ^L            Repaint screen.
  R                    Repaint screen, discarding buffered input.
        ---------------------------------------------------
        Default "window" is the screen height.
        Default "half-window" is half of the screen height.
 ---------------------------------------------------------------------------

                          SEARCHING

  /pattern          *  Search forward for (N-th) matching line.
  ?pattern          *  Search backward for (N-th) matching line.
  n                 *  Repeat previous search (for N-th occurrence).
  N                 *  Repeat previous search in reverse direction.
  ESC-n             *  Repeat previous search, spanning files.
  ESC-N             *  Repeat previous search, reverse dir. & spanning files.
  ESC-u                Undo (toggle) search highlighting.
        ---------------------------------------------------
        Search patterns may be modified by one or more of:
        ^N or !  Search for NON-matching lines.
        ^E or *  Search multiple files (pass thru END OF FILE).
        ^F or @  Start search at FIRST file (for /) or last file (for ?).
        ^K       Highlight matches, but don't move (KEEP position).
        ^R       Don't use REGULAR EXPRESSIONS.
 ---------------------------------------------------------------------------

                           JUMPING

  g  <  ESC-<       *  Go to first line in file (or line N).
  G  >  ESC->       *  Go to last line in file (or line N).
  p  %              *  Go to beginning of file (or N percent into file).
  t                 *  Go to the (N-th) next tag.
  T                 *  Go to the (N-th) previous tag.
  {  (  [           *  Find close bracket } ) ].
  }  )  ]           *  Find open bracket { ( [.
  ESC-^F <c1> <c2>  *  Find close bracket <c2>.
  ESC-^B <c1> <c2>  *  Find open bracket <c1> 
        ---------------------------------------------------
5
Blake Regalia

まず、端末で回線終了設定をセットアップする必要があります

git config --global core.autocrlf input
git config --global core.safecrlf true

その後、:qを使用できます

5
Jamanius

終了コマンド(qなど)を押す前に、現在の入力言語を確認してください。英語でない場合、コマンドは機能しない可能性があります。

3
papandreus

q または SHIFT+q トリックを行います。これはgit statusgit show HEADgit diffなどのような多くの広範囲なページスクロールセッションからあなたを導きます。

3
SovietFrontier

Crt + cはWindows用です。 user1852392

3
PythonLearner

--no-pagerフラグを認識しないコマンドに対してページャーを無効にすることができます。

git config --global pager.<command> false

ログエイリアスを無効にして、返す数量を設定します。

git config --global pager.log false
2
jmsmrgn

Git bashでこの手順を試してください。役立つかもしれません。

  1. CTRL + C
  2. :qa!
2

git reflogを使用できます

コミットからのすべてのハッシュコードが表示され、最新のものから古いものへのメッセージでリセットされます。

0
sekti92uk

Git bashを使っているなら、exitを使ってみてください。

私はqまたはctrl + qを使ってみましたが、bashでは動きませんでした。

0
Govin