Git
大约 2 分钟
Git
目录
Github Desktop
参考:
http://t.zoukankan.com/linwenye-p-12866557.html
https://www.bilibili.com/video/BV13W411U7HY
一些翻译
File 文件菜单
英文 | 简中 | 快捷键 |
---|---|---|
New repository | 新建本地仓库 | Ctrl+N |
Add local repository | 添加本地仓库 | Ctrl+O |
Clone repository | 克隆仓库 | CtrlShift+O |
Options | 选项 | Ctrl+, |
Edit 编辑菜单
英文 | 简中 | 快捷键 |
---|---|---|
Undo | 撤回 | Ctrl+Z |
Redo | 重做 | Ctrl+Y |
Cut | 剪切 | Ctrl+X |
Copy | 复制 | Ctrl+C |
Paste | 黏贴 | Ctrl+V |
Select All | 全选 | Ctrl+A |
Find | 寻找 | Ctrl+F |
View 视图菜单
英文 | 简中 | 快捷键 |
---|---|---|
Changes | 修改 | Ctrl+1(也可在界面左侧的顶部按) |
History | 修改历史 | Ctrl+2(也可在界面左侧的顶部按) |
Repository list | 仓库列表 | Ctrl+T(也可在界面顶部按) |
Braches list | 分支列表 | Ctrl+B(也可在界面顶部按) |
Go to summary | 转到摘要(commit信息) | Ctrl+G(也可在界面左侧的底部按) |
Show stashed changes | Ctrl+H | |
Toggle full screen | 切换到全屏 | F11 |
Reset zoom | 重设缩放 | Ctrl+0 |
Zoom in | 放大字体 | Ctrl++ |
Zoom out | 缩小字体 | Ctrl+- |
Toggle developer tools | 切换到开发者工具(网页调试器) | CtrlShift+I |
Repository 菜单
英文 | 简中 | 快捷键 |
---|---|---|
Push | 推(上传) | Ctrl+P |
Pull | 拉(下载) | CtrlShift+P |
Remove | ?移除 | Ctrl+Backspace |
…… | ||
…… | ||
…… | ||
…… | ||
…… | ||
…… |
Brach
略
Help
略
使用
使用功能 | 使用场景 | 补充 |
---|---|---|
New repository | 没本地项目,也没远程仓库 | |
Clone repository | 没本地项目,但有远程仓库 | 等同于 cd + clone xxx.git 可以通过登录github看clone |
Add local repository | 有本地项目,无论有没有远程仓库 |
相较于传统命令行方式
- 下面的命令行操作有了GUI界面
git add .
git commit -m ""
git push
可以方便同时查看多个项目(可以是不同IDE中的项目)
可视较好,用来看Changes和History很直观。就算是没有远程仓库也很方便
管理github与gitee
可以在github desktop上登录github,对该账号下的仓库进行快速clone和管理
对于gitee,clone就好,clone时也需要验证账户和密码。也很方便
总结
- 如果只是单个仓库的使用,这两没什么区别
- github就是多了一个,可以快速查看github上所有仓库的功能罢了