创建远程库
登陆后,点击在网页右上角的“+” --> “New repository”,创建远程库。
远程仓库操作
命令名称 作用
git remote -v 查看当前所有远程地址别名
git remote add 别名 远程地址 起别名
git push 别名 分支 推送本地分支上的内容到远程仓库
git clone 远程地址 将远程仓库的内容克隆到本地
git pull 远程库地址别名 远程分支名 将远程仓库对于分支最新内容拉下来后与 当前本地分支直接合并
创建别名
基本语法:
git remote -v
查看当前所有远程地址别名git remote add 别名 远程地址
abc@DESKTOP-R85C9HV MINGW64 ~/Desktop/HelloGit (master)
$ git remote -v
abc@DESKTOP-R85C9HV MINGW64 ~/Desktop/HelloGit (master)
$ git remote add hellogit https://github.com/abc/HelloGit.git
abc@DESKTOP-R85C9HV MINGW64 ~/Desktop/HelloGit (master)
$ git remote -v
hellogit https://github.com/abc/HelloGit.git (fetch)
hellogit https://github.com/abc/HelloGit.git (push)
https://github.com/abc/HelloGit.git,这个地址在创建完远程仓库后生成的连接 ,如图所示