How To Git Bash To Github
1- Open Git Bash.
2- Navigate to the root directory of your project.
3- Initialize the local directory as a Git repository. By default, the initial branch is called main. If you’re using Git 2.28.0 or a later version, you can set the name of the default branch using -b.
4- Add the files in your new local repository. This stages them for the first commit.
it Adds the files in the local repository and stages them for commit. To unstage a file, use 'git reset HEAD YOUR-FILE'.
5- Commit the files that you've staged in your local repository.
it Commits the tracked changes and prepares them to be pushed to a remote repository. To remove this commit and modify the file, use 'git reset --soft HEAD~1' and commit and add the file again.
1- Create a new repository on GitHub.com. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub. For more information, see "Creating a new repository."
2- At the top of your repository on GitHub.com's Quick Setup page, click to copy the remote repository URL.
3- Open Git Bash.
4- Change the current working directory to your local project.
5- In the Command prompt, add the URL for the remote repository where your local repository will be pushed.
it Sets the new remote
it Verifies the new remote URL
6- Push the changes in your local repository to GitHub.com.
it Pushes the changes in your local repository up to the remote repository you specified as the origin
cd change directory
pwd current directory