赞
踩
本地项目部署到git
git remote add origin 你的项目地址 比如(https://gitee.com/123456)
3. git add . (如果项目大,这里等待时间会有点长)
4. git commit -m '项目部署'
5. 推送:git push -u origin "master"
git status --ignored 查看被忽略的文件
1、重置缓存
git rm -r --cached . 被忽略的所有文件(释放)
2、添加
git add .
3、提交
git commit -m "重置git缓存文件"
常见报错
1.error: remote origin already exists.
这表示你的项目有默认的远程源。
git remote -v 查看远程仓库的信息
git remote rm origin 删除已绑定的仓库
git remote add origin 你的项目地址 再次绑定远程仓库
2. $ git push -u origin "master"
error: src refspec master does not match any
error: failed to push some refs to 'https://gitee.com/123456.git'
未执行git add 导致出错
git add . (如果项目大,这里等待时间会有点长)
git commit -m '项目部署'
3.warning: adding embedded git repository
当前目录下面有.git文件夹------默认是隐藏的,直接将.git文件夹掉,再重新git add .
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。