赞
踩
安装git
国内的镜像:https://npm.taobao.org/mirrors/git-for-windows/
首次使用教程
步骤1:创建一个目录,执行git init
git config user.name ‘chennuan’
git config user.email ‘chennuan478440602@163.com’
git remote add origin git@github.com:chennuan/test.git
修改本地文件
git status
git add *
git commit -m ‘usegit’
git push -u origin master
报错1
https://blog.csdn.net/weixin_43264399/article/details/87350219
ssh-keygen -t rsa -C “chennuan478440602@163.com”
ssh-keygen -t rsa -C “nchen@zhibodata.cn”
cat ~/.ssh/id_rsa.pub
git pull --rebase origin master
! [rejected] master -> master (non-fast-forward)
报错3:
! [remote rejected] master -> master (pre-receive hook declined)
git push不上去的原因在于所push的分支权限为protected,只有项目的管理员或者项目的管理员指派的具有相应权限的人才能进行push
新建其它分支,将项目push到新建的分支上,后期再进行merge
(1)新建分支
git branch 分支名
(2)切换分支
git checkout 分支名
(3)进行项目上传
git add .
git commit -m “提交的信息”
git remote add origin 远程仓库地址
git push -u origin 分支名
https://blog.csdn.net/weixin_44394753/article/details/91410463
fork库到自己的仓库
修改本地代码
git pull
merge
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。