Git

// 连接远程仓库
git remote git:name

git clone name
// 创建仓库
mkdir name

git add filename
git add.
// 撤销add
git reset HEAD -filename
git reset .
git reset HEAD~100

git commit -m 'infor'
//推送改变到远程仓库
git push

git status
git diff

// 查找提交记录
git log
git log --preety=oneline
// 查找命令行历史
git reflog

// 查看commit详情
git show
git show commitid
git show commitid filename

你可能感兴趣的:(Git)