1.安装
在Windows上使用Git,可以从Git官网直接下载安装程序,(网速慢的同学请移步国内镜像),然后按默认选项安装即可。
安装完成后,在开始菜单里找到“Git”->“Git Bash”,蹦出一个类似命令行窗口的东西,就说明Git安装成功!
安装完成后记得设置名字与邮箱:
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
2.可视化工具---SourceTree(纯属个人喜欢的一个可视化工具)
2.1安装与绑定github:
https://blog.csdn.net/qq_32365567/article/details/52859166
网友评论