An open API service indexing awesome lists of open source software.

https://github.com/harsh3dev/newcalcx

Temporary git repo to practice git
https://github.com/harsh3dev/newcalcx

Last synced: 4 months ago
JSON representation

Temporary git repo to practice git

Awesome Lists containing this project

README

          

1. `git init ` - to initialise a new git in the local machine, it will start tracking the project

2. Create new repo in [github.com](github.com), copy the link of the repo
3. `git remote add origin ` - this adds the "remote" to "origin"

3.1. `git remote -v` - to confirm that remote has been added
4. Now the local repo and github repo have been linked
5. `git add .` - this adds the changed files to the staging area
6. `git commit -m` "message" - this commits the changes added to the staging area, to head but not to the remote repository
7. `git push origin master` - sends changes to the master branch of the remote repository
8. ***Till now the initial changes have been saved to the master branch in github***