Git and GitHub Hands Day 1 Task
Git and GitHub Hands Day 1 Task
Day 1: - Task
Today we are doing configuration setup of Git and GitHub in our System, so
that we can easily push our code on repository for future reference.
Here step by step process are given below:
1. First go to github.com and signup if you have an account then login
https://github.com/
press enter
After completion of these task create file like index.html and write
your code. Save it
10. Open terminal in vs code and use command to stage your code
git add . for staging all code
git add <file-name> for staging particular file
11. After staging, save your code in local repo by using following command
git commit -m “meaningful message”
17. Before push your code on GitHub, connect your remote access by using
following command