简单git提交代码到github

前提条件

已经装好git环境,这里不赘述。
终端输入git,检查git是否正常。

初始本地化仓库

终端进入项目所在文件夹

git init

初始化成功会在文件夹下生成一个.git文件夹(可能被隐藏)

增加文件进行追踪

git add file.type

创建远程仓库

·首先有一个github账号,假设账号名就是user
·在repo里新建一个prj仓库
此时仓库地址就是

https://github.com/user/prj.git

关联远程仓库

git remote add origin https://github.com/user/prj.git

push到远程仓库(初次)

git push -u origin matser

增加新文件

git add newFile
gir commit -m "add new file"
git push 

你可能感兴趣的:(简单git提交代码到github)