Fork仓库用法

Camill

Fork操作

对于某一个项目来说,如果自己不属于开发者中的一员,那么只能先fork别人的代码,然后将代码拉取到本地进行修改之后,再向原来的项目发起pull request

首先Fork一个仓库,然后克隆自己空间的仓库到本地:

1
$ git clone https://gitee.com/wuhj2001/ros2_21_tutorials.git

然后添加仓库所有者的地址

1
$ git remote add upstream https://gitee.com/guyuehome/ros2_21_tutorials.git

查看远程仓库

1
$ git remote -v

可以与源仓库保持最新

1
$ git pull upstream master

Pull Request

在本地修改代码之后,向源仓库发起pull request(在网页或者客户端中操作)

  • 标题: Fork仓库用法
  • 作者: Camill
  • 创建于 : 2024-01-30 10:56:23
  • 更新于 : 2024-01-30 10:56:23
  • 链接: https://camill.love/note/git-2/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论