git常用命令
- 配置
1 | git config --global user.name "your name" |
- 生成密钥
1 | ssh-keygen -t rsa -C "example@e.com" |
- 基本
1 | git push origin master |
- 保存、恢复进度
1 | git stash |
- 删除远程分支
1 | git push origin --delete test |
在ubuntu下使用git感觉push/pull/clone等操作都很慢,可以修改/etc/ssh/ssh_config文件,将GSSAPIAuthentication no打开, 亲测有明显效果。