Skip to main content

Using Source Control in your Gitspaces

Using the Supported Source Control Management Tools

GitHub CLI comes pre-installed with VS Code IDE, so you just need to login to use.

git config --global user.email "you@example.com" 
git config --global user.name "Your Name"

Commit Changes to Upstream

  1. Once you've made a few changes, you can use the integrated terminal or the source view to commit your work. Here are the steps to use the Source Control view for this example.

  2. To stage your changes, click + next to the file to stage the changes, or next to Changes if you've changed multiple files and you want to stage them all.

  3. To commit your staged changes, type a commit message describing the change you've made, then click Commit.

  4. Now Sync Changes, it will redirect you to login and authorize to your Source Provider. After authorization, your changes will be committed to your fork.

  5. And that’s it! You have successfully used Gitness Gitspace for development