The Git pane streamlines version control directly in your workspace, making code tracking, branch management, and collaboration seamless.
How to access the Git pane
How to view changes
How to manage branches
How to resolve merge conflicts
How to access Shell
git clone <url-to-repository>
git init
git remote add origin <url-to-repository>
git status
(shows modified, added, and deleted files)git add <filename>
or git add .
(for all files)git commit -m "your commit message"
git push origin <branch-name>
git pull origin <branch-name>
GIT_URL
https://<username>:<token>@github.com/<user-or-org>/<repository>
git push $GIT_URL
to push without typing credentials