35 words
1 minute
Github使用
Push本地项目到github仓库
cd my-projectgit initgit add .git commit -m "First commit"git remote add origin git@github.com:yourname/repo.gitgit branch -M maingit push -u origin main
cd my-projectgit initgit add .git commit -m "First commit"git remote add origin git@github.com:yourname/repo.gitgit branch -M maingit push -u origin main
评论