Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 466 Bytes

remote_basics.md

File metadata and controls

33 lines (26 loc) · 466 Bytes

Remote Basics

# Show the remote repositories
git remote -v
# Clone an existing repository
git clone <from> <to>
git clone https://github.com/gudme/embed-dsp.git
# Show information about origin server
git remote show origin
# Fetch data from origin server
git fetch origin
# Push changes back to master branch in origin server
git push origin master
# Delete remote branch br1
git push origin :br1