将本地代码提交到github

1、初始化仓库  

git init

2、把文件添加进去,把文件修改添加到暂存区

git add README.md

3、查询状态

git status

4、提交更改,把暂存区的所有内容提交到当前分支

git commit -m "first commit"

5、本地仓库与远程库关联 (注:  https://github.com/WLIN534/123.git 是指自己的远程库地址)

git remote add origin https://github.com/WLIN534/123.git

6、把本地库的所有内容推送到远程库

git push -u origin master

你可能感兴趣的:(将本地代码提交到github)