ワークスペース:プロジェクトディレクトリ。別名ワーキングディレクトリ
インデックス:職場からadd
あなたが持っているアイテムのGitの記録;プロジェクトの.git
ディレクトリに格納されているコミットと枝の集合
リモートリポジトリ:プロジェクトディレクトリoutwithで同じプロジェクトのために別のリポジトリ別名
ローカルリポジトリには、ステージング領域。 (必ずしもそうではありません別のコンピュータではなく、ほとんど常にある)
を実証するために:
$ cd my-dev-work
$ mkdir fooproject
$ cd fooproject // your workspace
$ git init // creates local repo and index, with default branch 'master'
$ echo "hello world!" >> foo.txt
$ git add foo.txt // foo.txt added to the index
$ git commit -m "Created foo.txt" // foo.txt added to local repo in a new commit
$ git remote add origin https://github.com/joebloggs/foo.git
// adds a link to a remote repository, in this case on Github, named 'origin'
$ git push origin master
// push your local'master' branch to the 'origin' remote repo,
// including the new commit containing 'foo.txt'
セミ局所的に - これは私のお気に入りのGitの会談のいずれかです。https://www.youtube.com/watch Δv= duqBHik7nRo –