Answers for "how to github"

1

how to github

// Type this first command to initialize the repository
git init
// Type this to check status
git status
// Type this to add all files in the folder(or filename)
git add *
// Type the commit message here
git commit -m "Initial commit"
// Type this after creating a repo on github.com
git remote add origin https/https://github.com/YourRepoName.git
// Type this to push to the repository
git push -u origin master
// Get a password and username prompt
// Enter them and boom! your files are on Github
username
password
Posted by: Guest on August-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language