gautham p
gautham p

Reputation: 143

How to migrate/move GitHub Teams across different Orgnaizations (in GHE)

We have a new GitHub Organization created and need to migrate/move our current Org's Teams (including the members in it).

Upvotes: 1

Views: 328

Answers (1)

VonC
VonC

Reputation: 1327184

You could consider scripting that migration through GHE API.

  • either through organization
  • or through members:
    • getting the list of members of the old org
    • adding them to the new one
  • Teams (same idea, for Team members)

Upvotes: 1

Related Questions