Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to push local repo to github

/*
|==================================================================
| How to init and push local repository code to remote (github)
|==================================================================
*/

STEP-1 (Initialize git ropository on local machine)
git init

STEP-2 (add all file to local git repo)
git add .

STEP-3 (commit your code to local repo)
git commit -m "first commit"

STEP-4 (select branch)
git branch -M main

STEP-5 (add remote address to local git repo)
git remote add origin https://github.com/Shahzad-Mahota/test-project

STEP-6 (push code to remote)
git push -u origin main
Source by github.com #
 
PREVIOUS NEXT
Tagged: #push #local #repo #github
ADD COMMENT
Topic
Name
3+7 =