码迷,mamicode.com
首页 > 其他好文 > 详细

vscode中配置github

时间:2020-12-29 11:46:11      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:orm   输入   ack   load   客户端   shu   安装git   mic   初始   

1、安装git和vscode
2、配置git

1 git config --global user.name "xxx" 
2 git config --global user.email "xxx@163.com"

3、vscode选择文件夹作为工作目录
4、vscode中进入命令面板搜索git,选择git初始化命令

技术图片

 

技术图片

 

5、在文件夹中选择git bash here

SSH模式

1 git remote add orgin git@github.com:xxx/aaa.git

HTTP模式

1 git remote add orgin https://github.com/xxx/xxx.git

xxx是你的github用户名, aaa.git 是你在github上的仓库名

ssh和http互换的时候

1 # 先看一下远端地址是否自己想要的
2 git remote -v 
3 # 不是就移除
4  git remote remove origin

6、输入

1 git pull orgin master

将远程仓库拉到本地

1、个人在github上面创建了仓库,通过本地的git拉取远程仓库到本地报错信息如下:
http://www.mamicode.com/info-detail-2523100.html

git pull push出现There is no tracking information for the current branch错误

解决在通过git客户端 git pull的时候出现Threre is no tracking information for the current branch . Please specify which branch you want to merge with。

就是需要指定本地projet分支,跟远程仓库项目分支之间的关系,比如,我们需要本地master对应远程的master

1 git branch --set-upstream-to=origin/master master
1 git push --set-upstream orgin master

 

vscode中配置github

标签:orm   输入   ack   load   客户端   shu   安装git   mic   初始   

原文地址:https://www.cnblogs.com/jackfh/p/14181915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!