This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Steps | |
| Create a new repository on GitHub. Do not initialize it with a README. | |
| Open your terminal or Git Bash. | |
| Navigate to your project folder using cd path/to/your/project. | |
| Run git init to initialize Git in the project folder. | |
| Run git add . to stage all files for commit. |