Answers for "Online Git repository commands"

0

Online Git repository commands

// Online Git repository commands
git remote add origin <repository URL>
  - Add the remote online repository
  - 
git push -u origin master
   - push the local git repository to the origin to the -   master branch

git clone <repository URL>
   – Clone an online Git repository to your computer
Posted by: Guest on January-21-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language