github上传代码操作,简单记录

github上传代码操作,简单记录

码云上传代码见:https://blog.csdn.net/weixin_42693712/article/details/107571303
github上传代码:
1.复制github网址,右击项目git BashHere
2.git clone https://github.com/111/111.git(https://github.com/111/111.git替换成你之前复制的地址)
3…这个步骤以后你的本地项目文件夹下面就会多出个文件夹,该文件夹名即为你github上面的项目名,如果我多出了个Comment文件夹,我们把本地项目文件夹下的所有文件(除了新多出的那个文件夹不用),其余都复制到那个新多出的文件夹下
4.cd 文件夹的名字
5. 5.1 git add . (注:别忘记后面的.,此操作是把Comment文件夹下面的文件都添加进来)

     5.2  git commit  -m  "提交信息"  (注:“提交信息”里面换成你需要,如“first commit”)

这步如果不成功(错误提示如下:*** Please tell me who you are.
Run git config --global user.email “you@example.com” git config --global user.name “Your Name”
遇到这种情况依次执行以下命令
git config --global user.email “你的邮箱”
git config --global user.name “用户名”)

   5.3  git push -u origin master   (注:此操作目的是把本地仓库push到github上面,此步骤需要你输入帐号和密码)
   如果遇到这个错误:fatal: Not a git repository (or any of the parent directories): .git,证明你没有git目录,在项目目录下执行 git init即可
-------------本文结束感谢您的阅读-------------