Create a ReadMe File 1. Create a file named README.md in the root (based) folder of the Git repo. 2. Add any instructions or documentation that you want to share... read more →
If you want to remove the file from the Git repository and the filesystem, use: git rm file1.txt git commit -m "remove file1.txt" But if you want to remove the... read more →
Follow these steps to project to Github git init git add . git commit -m "Add all my files" git remote add origin https://github.com/webxpertzone/php.git Upload of project from scratch require... read more →
(Note: starting Oct. 2020, any new repository is created with the default branch main, not master. And you can rename existing repository default branch from master to main. The rest... read more →