标签:git push git init ice git命令 fir python 本地 仓库 初始
在Github上新建一个仓库Test,不初始化echo "# Test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/jerryfeng007/Python-practices.git
git push -u origin master
命令解释:
git init:
初始化,该命令将创建一个名为 .git 的子目录(项目里的文件还没有被跟踪)
标签:git push git init ice git命令 fir python 本地 仓库 初始
原文地址:https://blog.51cto.com/11009785/2373320