Hello,

I have only ever used git in very very basic way: commit, branch, merge request, that's pretty much it.

I have a use case where I pull the repository locally, branch (let's call it branch1), write some code, test it, commit, then create a merge request to master branch.

The merge request takes some time to be approved. During that time I would like to add more edits on top of those I submitted in the merge request. What would be the correct steps here?

  • mryessir@lemmy.sdf.org
    ·
    8 months ago

    Exactly.

    Depending on the upstream guidelines (check for a CONTRIBUTION file) you may open a MR with your initial development efforts. And reuse the branch until you have finished the feature. Then you request a review.

    Or you may first mention your branch on a issue and only create the merge request once the entire feature is developed.

    If you are developing another feature, use a dedicated branch.

    In any case, the author merging may elect only specific portions of your change.

    Also note that it is perfectly normal that a merge request will be open for months. So don't be discouraged. There may already be people profiting from your change. You just don't see it.