Git&Git hub|Gitを起動


ウィンドウに基づいて整理された投稿.忘れないように整理した投稿なので、祈祷書を購入して読むことをお勧めします.
💛関連図書(出所):Doit!地獄から来た文書管理人ダウンジャケット入門

1.Gitのインストール


1)接続リンク:https://git-scm.com/(WindowsまたはMacバージョンのインストール)
2)チェックボックスを選択する際の注意点:User Window's default console window→選択!(ウィンドウコマンドfromportウィンドウを使用)
3)Git Bash→$gitの実行

2.Git優先パラメータと基本機能


1)操作内容の入力と設定
$ git config --global user.name "example"
$ git config --global user.email "[email protected]"
2)ストレージフォルダ(ディレクトリ)のチェック
→作業ディレクトリの略語を印刷する
$pwd
3)現在のディレクトリのサブディレクトリ(テスト)を作成する場合→mkdir(作成)/ls(OK)
$ cd Documents
$ mkdir test
$ ls
4)サブディレクトリの削除
$ rm -r test
$ ls
5)使用(3)使用するディレクトリを作成し、Vimエディタを使用
$vim test.txt 
i→挿入/a→追加[ショートカット]
Esc→合成終了/:wq→w保存q終了
6)記入内容確認、cat
$ cat test.txt

3.羽毛リポジトリの作成

$ mkdir hello-git
$ cd hello-git
$ ls -la
$ git init
$ ls -la

4.羽版管理


1)ワークツリー:ファイルの変更や保存など、表示されるディレクトリを指します.
$ git status
$ vim hello.txt #글쓰고 저장
$ ls -la
$ git status
Untracked file→バージョン管理されていないことを示します.
2)ダンプ(ステージ上):git add
舞台とは?バージョンのファイルとして作成する場所.
$ git add hello.txt
$ git status
Untracked fileのコミット→Changes(文が変更されたことを確認できます)
3)提出書類Git commit
提出とは?襟にバージョンを作成します(提出するときは、バージョンにどのような修正があるかについての情報を書きます.ただし、英語で書かれたものは、外国人開発者も含めて、きれいにするために共通の練習をしましょう!)-m
$ git commit -m "message1 ~~~~~"
1 file changed, 1 insertion(+)
4)ダンプとコミットを同時に行う方法
$ vim hello.txt → 글 추가
$ git commit -am "message2"
$ git log
番外1)チェック変更(git diff:チェック修正)
$ vim hello.txt → 글 수정
$ git status
$ git diff
modified: hello.txt
番外2)既存バージョンのトレース済み状態と作成したトレースされていない状態のファイルをマージしてコミットする
$ vim hello.txt
$ vim hello2.txt
$ git status

$ git add hello.txt
$ git add hello2.txt
$ git status

$ git commit -m "message3"
$ git log
$ git log --stat
番外3)
$ git commit --ammend
→提出したばかりのメールを修正する
$ git checkout --file name 
→「工作機械ツリー」で変更したファイルを返します($cat file name:OK)
$ git reset HEAD file name
→ステージ(コミット前の仮想スペース/スタンバイスペース)からファイルを降格(保存されていません)
$ git reset HEAD^
→最新のコミット方法を返す
$ git revert HEAD^
→最新コミットを削除せずに戻る方法