1.设置缩写git次Git
$ git config --global alias.ci commit
$ git config --global alias.st status
$ git config --global alias.br branch
2.看状态
$ git st
3.新建个分支并到分支上
$ git checkout -b zth
4.将代码提交到存储区
$ git add *
提交的时候加注释
$ git ci -m "addd"
若*** Please tell me who you are.
5.设置邮箱和名称
$ git config --global user.emai "zth@zhongrui.com"
$ git config --global user.name "zth"
6.删除
$ git rm abc.txt
提交删除
$ git ci -m "delete abc"
7.推送
推送分支
$git push origin 分支名字
8.查看远程仓库地址
$git remote -v











网友评论