git推送代码到项目
2023-01-31 本文已影响0人
comeo
1、新建一个文件夹(确保本机已经安装了git),右键git bash here
2、确认自己git项目工程的地址:
git clone https:..........git
3、将自己的修改添加到改工程下
4、右键自己的工程目录,点击git bash here,如果在项目文件夹外面的话,到后面会出现下面的错误:
error: src refspec master does not match any
这个错误的意思就是缺少 readme git.init等,这些项目在gitlab等创建时候已经产生,因此需要进到这一级目录
5、git add filepath #将需要添加的或者修改的文件路径填写正确
6、git commit -m "注释的内容" #添加一些注释并提交
7、关联远程git remote add origin 远程项目的 Https 地址,如果出现:error: remote origin already exists
则输入 git remote rm origin
8、git push -u origin master
9、大功告成
tips: 若出现bash: $'\302\226git': command not found 或者类似的错误,则是因为git命令输入时候引入了空格导致