Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ===== Overview ===== Fetching, pulling and pushing. ===== Fetching ===== <code> $ git fetch [origin] $ git fetch ln $ git fetch --all </code> Before fetching, remove any remote-tracking references that no longer exist on the remote. <code> $ git fetch [-p|--prune]] </code> ===== Pushing ===== <code> $ git push origin thisbranch:thatbranch $ git push origin --delete <branchname> </code> git_fetch_pull_push.txt Last modified: 2019/04/04 03:20by rpjday