In this repository, you can find how to download and use git
- Download git using download git
- Install git bash
- Configure git bash using your information
- Download VS Code and check if it shows the presence of git or not
- Make a new folder in your local computer and open it in VS Code
- Clone your repository to VS Code
- Make changes and perform add, commit and push to your github
Configure user information for all local repositories
$ git config --global user.name "[name]"
Sets the name you want attached to your commit transactions
$ git config --global user.email "[email address]"
Git status will displays you the status of current repository.
git status
You can clone you github with VS Code by the help of link address under "HTTPS" and paste it to terminal of in-build VS CODE
git clone [link address]
git add [file name]
git commit -m "your message about this change"
git push origin main
[!Note] Before you add your file to your repository, it will show status as modified in red color but will show modified in green after you add it to repository as check your status.