> README.mdgit initgit add README.mdgit commit - ;更新日期:2025/1/11.幽灵资源网,磁力链接,云盘下载,BT种子,CPU天梯,显卡天梯,UU加速器,阅读3.0,英雄联盟,怪物猎人,无损音乐网,无损音乐下载网站,无损音乐免费下载,320Kmp3下载,无损音乐免费下载网站,音画欣赏,无损音乐,抖音神曲,发烧大碟,车载歌曲,试音天碟,WMA,WAV+CUE,WAV整轨,FLAC分轨,DSD黑胶,HI-FI试音,SACD-ISO,4K高清,高清电影下载,Magnet,Torrent,BitTorrent,迅雷快传,SUB,SRT,ASS/SSA,SUP,RARBG,TLF字幕,BluRay,x265,x264,DTS-HD,WEBRip,10BIT,HDR,DDP5.1,WEB-DL,1080p高清电影下载,中国高清网,高清电影,720p,1080p,MKV,AVI,蓝光原盘,3D高清,电影下载">

Visual Studio Code(vscode) git的使用教程

服务器 发布日期:2025/1/11 浏览次数:1

正在浏览:Visual Studio Code(vscode) git的使用教程

本文介绍了Visual Studio Code(vscode) git的使用,分享给大家,具体如下:

1.创建一个github账号

Visual Studio Code(vscode) git的使用教程 

2.在vscode中执行命令

echo "# C-Tests"  README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/harryluo163/C-Tests.git
git push -u origin master

执行时候会让你属于账户密码,vscode

先按照提示去下载git

1.安装

Git:

sudo apt-get install git

全局配置

git config --global user.name "YourName"
git config --global user.email YourName@gmail.com

查看配置

git config user.name
git config user.email


git config --list

或查看一下文件

~/.gitconfig

3.回到vs code打开git工作区就会看到所有代码显示在这里

Visual Studio Code(vscode) git的使用教程

Visual Studio Code(vscode) git的使用教程

4.然后按提示随便在消息框里输入一个消息,再按ctrl+enter提交

Visual Studio Code(vscode) git的使用教程

5.然后把所有暂存的代码push云端

Visual Studio Code(vscode) git的使用教程 

6.打开github,发生改变了哦

Visual Studio Code(vscode) git的使用教程 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。