Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

1.在Github创建一个空仓库 2.在本地项目文件夹打开Git Bash 3.初始化git仓库 输入 1git init 4.提交项目文件夹所有文件-放入暂存区 输入 1git add . 提交所有文件 5.提交项目文件夹所有文件-提交文件 输入 1git commit -m "first commit" -m表示message “first commit”表...
Git