use git

来源:互联网 发布:好听的网络歌曲 推荐 编辑:程序博客网 时间:2024/05/19 12:27

create a new repository on the command line

echo "# cob" >> README.md  git init  git add README.md  git commit -m "first commit"  git remote add origin https://github.com/NickName/ProjectName.git  git push -u origin master