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

3、Git 全局设置:

git config --global user.name "ASxx"
git config --global user.email "[email protected]"

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

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

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为主分支)

6、下载Git项目到本地

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

 git clone  http://[email protected]:1000/r/xxx.git (你要克隆的项目名称)

你可能感兴趣的:(git)