📌  相关文章
📜  github 本地与远程同步 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:28.711000             🧑  作者: Mango

代码示例1
// cd to your project folder
>git init
>git remote add origin https://github.com/YOUR_GITHUB_NAME/YOUR_REPO_NAME.git
>git add .
>git commit -m "init"
>git push --set-upstream origin master