Git

https://git-scm.com/

设置用户名

1
git config --global user.name "名称"

设置用户邮箱

1
git config --global user.email "邮箱"

生成ssh

1
ssh-keygen -t rsa -C "邮箱"

添加所有更改

1
git add .

提交更改

1
git commit -m "日志"

更新

1
git pull

推送

1
git push

重定向远程地址

1
git remote origin set-url [url]

回退版本

1
git reset --hard [版本号]

强制推送

1
git push -f

清除记录

1
2
3
4
5
6
git checkout --orphan latest_branch
git add -A
git commit -am "init"
git branch -D master
git branch -m master
git push -f origin master