将的SampleTable例子提交到github
具体步骤如下:
a. 首先登陆github
b. 创建新的reponsitory
name, description
c. 打开terminal,
cd 文件夹下
d. vim README.md
编写项目简介
e.
echo "# SampleTable" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/whj111/SampleTable.git
git push -u origin master
如果不行的话用下面命令
git pull --rebase origin master
git push -u origin master
时间: 2024-11-03 03:37:14