workspace, index, local repository, remote repository
add (-u)
commit
commit -a
push
fetch
merge
create git name
git config –global user.name “”
git config –global user.email “”
\app> git status On branch master Initial commit Untracked files: (use "git add..." to include in what will be committed) README.txt nothing added to commit but untracked files present (use "git add" to track)
\app> git commit
[master (root-commit) aba9fda] add file
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 README.txt
\app> git status
On branch master
nothing to commit, working directory clean
\\app> git status On branch master Changes not staged for commit: (use "git add..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) modified: README.txt no changes added to commit (use "git add" and/or "git commit -a")
\app> git commit -a -m “Added README content”
[master 776f72d] Added README content
1 file changed, 1 insertion(+)
introduction, user requirement, system indification