0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Git基本コマンドとGitの色々(個人メモ用)

Posted at

最近の開発ではGit利用することが多く、多分これからも増やすと、
Git経験が少ないので、この場で整理しようかな思います。

Git基本コマンド(随時追加・修正)

git config -l      #git設定一覧
git init           #リポジトリを新規に作成
git clone <url>    #リポジトリをローカルにクローン
git status         #作業ディレクトリでの現在の状態確認
git add        #ファイルをインデックスに追加する(コミットの対象にする)
git commit         #ローカルリポジトリにコミット、[-m]によりコミットメッセージを追加
git log            #コミット時のログを表示する
git push           #リモートリポジトリにアップロードする
git pull           #リモートリポジトリの内容を取得
git reset          #ファイルをインデックスから削除し、特定のコミットの状態まで戻す
git branch         #リポジトリ内のすべてのブランチを一覧表示、
                   #<branch>により新規ブランチを作成、[-d]<branch>により指定ブランチを削除
git checkout       #作業ツリーを異なるブランチ<branch>に切り替える
git merge          #他のブランチやコミットの内容を現在のブランチに取り込む

Gitの色々(随時追加・修正)

  • 目的:バージョン管理(Revision control)
  • 似ているツール:SVN,CVS,VSS,TFS,Visual Studio Online
    その中、SVNとGitの違い:SVNは集中管理、Gitは分散管理
  • Gitの原理
    Git-core.png
    Git2.png
  • .gitignore
    このファイルに書かれたファイルは上から順に処理されて、Gitのトラッキングの対象外になります。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?