美文网首页
VSCODE & GITHUB2020-09-29

VSCODE & GITHUB2020-09-29

作者: lijunmn | 来源:发表于2020-09-29 11:05 被阅读0次

简介

本文主要记录如何在github 中,使用git 工具来连接GitHub,依次来和github 上的代码同步。

工具

git
vscode
github

代码

echo "# graduation_project" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin git@github.com:usuallyoralways/graduation_project.git
git push -u origin master

相关文章

网友评论

      本文标题:VSCODE & GITHUB2020-09-29

      本文链接:https://www.haomeiwen.com/subject/eizsuktx.html