首页 > 代码库 > VScode和GIT初步

VScode和GIT初步

1.下载mac版 vscode和git,==安装完成后vscode自动为中文


2.在命令行使用git --version检查安装版本git是否正确

设置git全局名称
git config --global user.name "cdshu"
git config --global user.email "xxxx@163.com"

3.vscode安装插件

 -git history(git log)

 -guides 代码辅助线

   -其他等等

4.vscode打开一个工程文件夹后,初始化git,此时工程文件夹下回多出git相关的隐藏文件

显示命令:defaults write com.apple.finder AppleShowAllFiles  YES
隐藏命令: defaults write com.apple.finder AppleShowAllFiles NO

VScode和GIT初步