GitとGithubの理解と使用



インストールGit


襟の使い方端末は、UIプログラムSource Treeをご利用いただけます
commands > UI

ターミナル設定


次のリンクをクリックして、該当するページに移動します.
WINDOWMACiterm2cmder
  • iterm 2設計の変更
    後続の変更が必要
  • git, sourcetree setting


    git公式ホームページ
    sourcetree公式ホームページ

    Git Set up


    コマンドプログラムなので
    端末で勉強してこそ、襟を正しく使うことができる.

    gitインストールの検証

    git --version

    git構成の確認

    git config --list

    グローバル編集Git

    git config --global -e
    

    Git Editerのパスの変更

    code .
  • を使用するには、VSCで
  • を設定する必要があります.
  • コマンド+shift+p実行Shell Command:install「code」起動
  • gitユーザー名、usermail設定と検証

    git config --global user.name "hangueira"
    git config --global user.email "[email protected]"
    
    git config user.name
    git config user.email

    git改行プロパティの設定(オペレーティングシステム固有)


    githubで複数のオペレーティングシステムを使用してGit履歴を開発する場合、変更はありませんが、問題が発生する可能性があります.
    WINDOWMACgit config --global core.autocrlf truegit config --global core.autocrlf input
  • オペレーティングシステムごとに改行文字列が異なる
  • window : text\r\n
  • mac : text\n
  • gitの初期化

    git init

    gitプロジェクトの削除

    rm -rf .git

    gitステータスの表示

    git status

    gitコマンド属性値の表示

    git config --h

    Git staging areaのアップグレード

    git add 파일명
    git add *
    git add *.js

    Git staging領域から作業ディレクトリを降格

    rf -rf cached 파일명
    rf -rf cached *
    rf -rf cached *.js

    コミットgit

    git commit -m "설명넣기"
    git commit 하기
    git commit -m "설명넣기"

    プッシュgithub

    git push

    Git workflow