现在github页面创建仓库,gitclone到本地
- cd 项目名
-
git remote -v
查看连接情况 -
git add .
提交到暂存区 -
git status
查看状态 -
git commit -m "the first commit project"
提交到本地仓库 -
git remote add orign https://github.com/noyanse1023/jd.git
关联远程仓库 git pull origin master // 把本地仓库的变化连接到远程仓库主分支
-
git push -u remotename branch
||git push -u origin master
推送到远程仓库