Git上传本地项目到Github

如何将本地项目push到GitHub上?

GitHub新建一个 repostory 找到URL 例如:https://github.com/hoo334/test.git

找到项目文件夹 右键git bash here

git init

git add . 

git commit -m "提交信息"

git remote add origin URL

git push -u origin master


提交更新到Github

git status (可选 查看更改文件)

git add 你想要提交更改的文件 或者git add .

git commit -m "提交信息"

git push  origin master

 

如果操作失误就直接删掉目录内的.git整个文件夹 重新git init。

你可能感兴趣的:(Git上传本地项目到Github)