当前位置:   article > 正文

vscode中使用git

vscode中使用git

vscode中使用git

1、首先在电脑下载安装windows版的git

2、文件->首选项->设置->搜索git.path->打开settings.json

添加下面内容:

"git.path": "D:/Git/bin/git.exe",
"terminal.integrated.shellArgs.windows": "D://Git//bin//bash.exe",
"git.autofetch": true
  • 1
  • 2
  • 3

3、Git 全局设置:

git config --global user.name "ASxx"
git config --global user.email "123456789@qq.com"
  • 1
  • 2

4、在vs中每次更新代码都会要输入账号密码,方便起见,可以配置一下让GIT记住密码账号。

git config --global credential.helper store   //在Git Bash输入这个命令就可以了
  • 1

5、点开项目右击进入Git Bash Here ,首先进入到项目目录,依次执行以下命令即可上传github或码云:

1. 初始化仓库  git  init 
2. 添加文件目录到git仓库  git  add . (. 是全部文件,文件名 可指定文件)
3. 上传到git仓库命令 git commit -m "可写注释内容"
4. 连接远程仓库连接命令 git remote add origin https://github.com/你的github的用户名/test.git(这里是版本库URL)
5. 推送到分支(master)的命令 git push -u origin master(分支名字master为主分支)
  • 1
  • 2
  • 3
  • 4
  • 5

6、下载Git项目到本地

​ 在你要存放的文件夹下 打开终端,执行如下命令:

 git clone  http://admin@10.228.1.2:1000/r/xxx.git (你要克隆的项目名称)
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/622439
推荐阅读
相关标签
  

闽ICP备14008679号