Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Existing Work

 Create a repo. On github


 Git init
 git remote add git remote add origin “your git link”
 git add .
 git commit -m “your message”
 git push --set-upstream origin master (for first time only)

For new work


 Create a repo. On github
 Copy the link of your repo. And clone it from command prompt.
Ex- git clone “Your link”
 Move the all files and folder to a newly created folder
 Then write following codes there
 Git add .
 git commit -m “your message”
 git push
Ongoing Project
 Git add .
 git commit -m “your message”
 git push

You might also like