Answers for "how to upload laravel project on github using command"

1

how to upload laravel project on github using command

//upload project to github using git bash
1 git init
2 git add .
3 git commit -m "first commit"
4 create a repository in git hub
//copy the url of new repository created and paste in following command before .git
5 git remote add origin url.git
6 git push -u origin master
Posted by: Guest on February-28-2022

Code answers related to "how to upload laravel project on github using command"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language