1.下载git https://git-scm.com/
VScode环境配置实现代码提示和括号自动补全功能 安装Anaconda
配置步骤:在编辑器的文件->首选项->设置->搜索git.path->点击编辑->找到你的电脑git的安装目录,找到里面的bin文件
夹,里面的git.exe文件把该文件的完整路径复制下来
2.创建git 本地仓库
创建daima目录
进入指定文件夹 执行git init
右击目录名字 git bash here 输入 git init
3. git 全局设置
git config --global user.name "xxxx"
git config --global user.email "[email protected]"
打开 目录下面.git\config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = https://gitee.com/wangwei5200/daima.git #git项目地址
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
4.vs code 打开daima目录 拉取代码
![9J[BMK`UKW1D}_H1OA{NS4.png
5.上传代码
添加新的文件
点击+号添加到暂存区
写入commit内容 然后按ctrl + enter 键
提交 然后取代码仓库查看
![F%I$JBF[email protected]$XSXY~YQO6F.png
原文地址:https://blog.51cto.com/12328206/2428133