本地操作
- 设置机器的基本属性
git config --global user.name "" user.email ""
- 将本机目录设置为git可以进行管理的仓库
git init
- 将文件添加到repository(这步实际上只是通知)
git add filename/*
- 将文件提交到仓库 ‘’内是动作名称
git commit -m 'action name'
- 显示当前仓库的状态
git status
- 查看需要修改的内容
git diff
- 往上回溯版本(1/2/n)
git reset -- hrad ^/^^/^n
git reset -- hrad HEAD // HEAD相当于一个指向版本的指针
- 恢复
git checkout -- filename // 用版本库文件替换工作区版本,等于一键还原
与远程仓库建立联系
-
与本地仓库进行关联
git remote add origin git @github.com:[account name]/[repo name] .git
-
将内容上传
git push (-u) origin master // 第一次使用时带上-u
自定义git
-
让git显示颜色,使其更醒目
git config --global color.ui true
设置忽略文件
.gitignore
,在忽略文件中的文件不进行上传