vscode git設置

1、git官网https://git-scm.com/download/win 链接下载:64-bit Git for Windows Setup不要下载Portable,体积太大了;

  如果git官网里下载不了,就参照链接做法:https://jingyan.baidu.com/article/e2284b2b84d7d2e2e6118dc4.html

2、git安装,一路next;https://blog.csdn.net/orange228/article/details/79365795

3、git使用,

git add u提交修改的文件和删除的文件

git add .提交修改的文件和新建的文件

git add A上面两者合并,提交修改的文件、删除的文件和新建的文件

 git commit -m "xx"将暂存区的文件提交到仓库里。

https://blog.csdn.net/qq_24531389/article/details/81330054

https://www.cnblogs.com/leading/archive/2012/03/02/better-not-use-git-for-windows-portable.html

https://jingyan.baidu.com/article/7f766dafba84f04101e1d0b0.html

https://www.cnblogs.com/skura23/p/5859243.html

https://blog.csdn.net/guvcolie/article/details/52759654

https://blog.csdn.net/qq_37577660/article/details/78565899

原文地址:https://www.cnblogs.com/Zhengxiaoxiao/p/10551190.html