当前位置:   article > 正文

Linux下向GitHub 上传代码_linux上github如何提交代码到别人仓库

linux上github如何提交代码到别人仓库

Linux下向GitHub 上传代码

1.先在Github个人主页创建一个仓库
2.在根目录下,复制仓库链接,将仓库复制到本地

git clone https://gitclone.com/github.com/<GithubName><RepositoryName>.git
  • 1

3.进入本地仓库目录

git init
  • 1

4.输入以下代码,下载之前学习的脑图

wget https://labfile.oss.aliyuncs.com/courses/1330/linux.png
wget https://labfile.oss.aliyuncs.com/courses/1330/python1.png
wget https://labfile.oss.aliyuncs.com/courses/1330/python2.png
wget https://labfile.oss.aliyuncs.com/courses/1330/git.png
  • 1
  • 2
  • 3
  • 4

5.添加仓库内的所有文件

git add --all
  • 1

6.配置

git config --global user.name "YourName"
git config --global user.email "YourEmail@xxx.com"
  • 1
  • 2

7.提交

git commit -m "first commit"
  • 1

8.连接GitHub

git remote set-url origin https://<your_token>@github.com/<USERNAME>/
<REPO>.git
  • 1
  • 2

9.推送

git push origin master
  • 1

检验测试:在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/492327
推荐阅读
相关标签
  

闽ICP备14008679号