ubuntu系统下用命令行将项目同步到Github

1.使用命令行将现有项目添加到 GitHub

官方教程

  1. 在github上新建一个和本地项目一样名称的仓库

  2. 打开终端,进入本地项目
    初始化:

    git init
    

    添加文件

    git add .
    git commit -m "First commit"
    

    链接远程仓库,输入用户名密码

    git remote add origin https://github.com/willian-li/pathfollowingwithobstacleavoidance.git
    

    上传到master分支

    git push origin master
    
  3. 设置主分支为master
    https://www.cnblogs.com/dongyaotou/p/14130089.html

  4. 删除main分支
    https://blog.csdn.net/weixin_30646315/article/details/97449384

2.github本地切换分支

https://www.cnblogs.com/u-1596086/p/11328374.html

  1. 查看分支

    git branch -a
    
  2. 切换分支

    git checkout master
    

3.提交文件到仓库

官方教程

  1. 添加

    git add .   
    git commit -m “first commit”    
    
  2. 更新本地仓库(远程做了文件修改要执行这步)

    git pull origin master
    
  3. 再上传

    git push -u origin master   
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值