Home > Blockchain >  Is there a terminal provided for remote repository on Github or GItLab website?
Is there a terminal provided for remote repository on Github or GItLab website?

Time:10-22

Is there a terminal provided for remote repository on GitHub or GitLab website? Just like we can change a file and commit the changes in the website.

I am a React developer and not happy with cloning a heavy repository just for npm run build.

I don't expect this functionality exists but it's just a little hope.

Thanks!

CodePudding user response:

Gitlab offers a full featured web IDE for inline repository files editing.

Please look at the following screenshot:

Web IDE

CodePudding user response:

Similarly, GitHub offers:

  • a web-based online IDE (still in beta) with https://docs.github.com/assets/images/help/codespaces/codespaces-diagram.png

In both case, you don't need to clone the repository.

  • Related